在使用NE64中的OpenTCP DEMO程序,在与CLIENT建立连接之前,必须调用函数tcp_getsocket 得到一个Handle.
以下为该函数:
INT8 tcp_getsocket (UINT8 soctype, UINT8 tos, UINT16 tout, INT32 (*listener)(INT8, UINT8, UINT32, UINT32) )
在解析该函数的参数时,INT32 (*listener)(INT8, UINT8, UINT32, UINT32)提到:
tcpc_demo_eventlistener() and tcps_demo_eventlistener() for more information on events and possible actions.
在所有的文件中找不到:tcpc_demo_eventlistener() and tcps_demo_eventlistener() 这两个函数;
请指教:1、到那里能找到这两个函数?
2、调用tcp_getsocket ()时,参数:INT32 (*listener)(INT8, UINT8,
UINT32, UINT32),用什么代替? |