#ifndef SOCKET_H #define SOCKET_H #include int SocketConnect(const char *host, short port); int SocketDisconnect(int sock); int SocketSendAll(int sock, const char *buf, size_t *len); #endif