#ifndef ConnectServer_hpp #define ConnectServer_hpp #include #include "server.hpp" namespace HDE{ class ConnectServer: public server{ public: ConnectServer(int domain, int service, int protocol, u_long IP); int establish_net_link(int sock, struct sockaddr_in address); }; } #endif