optical/NxFuncs/network/tcpserver.h
2025-09-04 09:45:08 +08:00

22 lines
258 B
C

#ifndef __TCPSERVER_H__
#define __TCPSERVER_H__
#include "ethernet.h"
#if (SERVER_NUM > 0)
void InitTcpServer(void);
void SetTcpKeepAlive(void);
SocketCtrl * GetTcpServerCtrlFromSocketId(int sIdx);
// tcp·þÎñ
void TcpServerRun(void);
#endif
#endif