optical/NxFuncs/network/tcpserver.h

22 lines
258 B
C
Raw Normal View History

2025-09-04 01:45:08 +00:00
#ifndef __TCPSERVER_H__
#define __TCPSERVER_H__
#include "ethernet.h"
#if (SERVER_NUM > 0)
void InitTcpServer(void);
void SetTcpKeepAlive(void);
SocketCtrl * GetTcpServerCtrlFromSocketId(int sIdx);
// tcp<63><70><EFBFBD><EFBFBD>
void TcpServerRun(void);
#endif
#endif