#ifndef TCP_SCK #define TCP_SCK #include #include #include #include #include #include #include #include #include "ip.hpp" using namespace std; class server { public: int sock; struct sockaddr_in addr; server (const ushort port, const uint limit = 1000); ~server (); }; class secure { public: SSL_CTX* fds; secure(); // client secure(const string cert, const string priv); //server ~secure(); }; class client { public: int sock; struct sockaddr_in addr; SSL* ssl = NULL; client (const string address, const ushort port, const uint timeout = 500, SSL_CTX* securefds = NULL); ~client (); bool tell (const string msg); string obey (size_t byte_limit = 1024); }; class comming { public: const server *srv; struct sockaddr_in addr; int conn; string ipv4; string ipv6; SSL* ssl = NULL; comming(const server *_srv, const uint timeout = 100, SSL_CTX* securefds = NULL); ~comming(); bool tell (const string msg); string obey (size_t byte_limit = 1024); }; #endif