This commit is contained in:
Hebin Chen 2024-08-10 01:30:49 -07:00
parent 52fce4c46f
commit f508c8bbd5

View File

@ -25,7 +25,7 @@ typedef bool (*TcpAcceptClientFunction)(void *, const char *);
typedef void (*SocketClosedFunction)(const void *);
typedef struct client_accept_parm
{
const TcpReadFunction mReadFunc;
const TcpReadFunction mReadFunc; /// This function is defined in the test file
const SocketClosedFunction mClosedFunc; /// This function is defined in the test file.
} ClientAcceptParam;
typedef struct tcp_server_parm