Dice / Network / Sockets / ConnectServer.hpp
ConnectServer.hpp
Raw
#ifndef ConnectServer_hpp
#define ConnectServer_hpp
#include <stdio.h>

#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