Sha256: 889e18d75b73f9d4cf9f7a5ff96d67242e5dfb611aeaff5dad3e32ac184452b0
Contents?: true
Size: 526 Bytes
Versions: 8
Compression:
Stored size: 526 Bytes
Contents
#ifndef D_TcpComLink_H #define D_TcpComLink_H /////////////////////////////////////////////////////////////////////////////// // // TcpComLink is responsible for ... // /////////////////////////////////////////////////////////////////////////////// typedef struct TcpComLink TcpComLink; TcpComLink* TcpComLink_Create(int socket); void TcpComLink_Destroy(TcpComLink*); int TcpComLink_send(void * voidSelf, char * msg, int length); int TcpComLink_recv(void * voidSelf, char * buffer, int length); #endif // D_TcpComLink_H
Version data entries
8 entries across 8 versions & 1 rubygems