00001 #if defined(NEED_SOCKET_DECL) 00002 # ifdef __cplusplus 00003 extern "C" { 00004 # endif 00005 int socket(int AddressFamily, int Type, int Protocol); 00006 int bind(int Socket, struct sockaddr *Name, int NameLength); 00007 int listen(int Socket, int Backlog); 00008 int accept(int Socket, struct sockaddr *PeerAddr, int *AddrLength); 00009 int connect(int Socket, struct sockaddr *Name, int NameLength); 00010 # ifdef __cplusplus 00011 } 00012 # endif 00013 #endif
1.3-rc1