From 6285b4d8b283fb38112ec04b1cc570a8c0c9844b Mon Sep 17 00:00:00 2001 From: Malfurious Date: Thu, 24 Oct 2024 08:44:36 -0400 Subject: Remove Socket class The remote socket functionality was only stub code, never fully implemented. A network architecture for compass keychains is no longer a design goal, so the dead code is removed. Signed-off-by: Malfurious --- Socket.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Socket.h (limited to 'Socket.h') diff --git a/Socket.h b/Socket.h deleted file mode 100644 index 86b6478..0000000 --- a/Socket.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef SOCKET_H -#define SOCKET_H - -#include -#include - -#ifdef WIN32 -#else -#include -#include -#endif // WIN32 - -class Socket { -public: - Socket(); - virtual ~Socket(); - - void conn(std::string host, std::string port); - void sendline(std::string line); - std::string readline(); - void clo(); - -private: - /*int sockid; - addrinfo hostInfo; - addrinfo* hostInfoList;*/ -}; - -#endif // SOCKET_H -- cgit v1.2.3