diff options
Diffstat (limited to 'lib/socket.h')
-rw-r--r-- | lib/socket.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/socket.h b/lib/socket.h index df2a133..dde4729 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -37,12 +37,10 @@ #include <sys/socket.h> #include <arpa/inet.h> -#include "info.h" - class Socket { public: - Socket(Info *ginfo); - Socket(u_short port, Info *ginfo); + Socket(); + Socket(u_short port); ~Socket(); Socket slisten(); int sconnect(char *ip); @@ -54,7 +52,6 @@ public: bool connected; private: - Info *info; int err; }; |