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.cpp | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 Socket.cpp (limited to 'Socket.cpp') diff --git a/Socket.cpp b/Socket.cpp deleted file mode 100644 index c90a607..0000000 --- a/Socket.cpp +++ /dev/null @@ -1,46 +0,0 @@ -#include "Socket.h" - -Socket::Socket() { - /*memset(&hostInfo, 0, sizeof(hostInfo)); - hostInfo.ai_family = AF_UNSPEC; - hostInfo.ai_socktype = SOCK_STREAM;*/ -} - -Socket::~Socket() { - /*freeaddrinfo(hostInfoList); - clo();*/ -} - -void Socket::conn(std::string host, std::string port) { - throw 1; - /*int status; - status = getaddrinfo(host.c_str(), port.c_str(), &hostInfo, &hostInfoList); - if (status) throw 1; - - sockid = socket(hostInfoList->ai_family, hostInfoList->ai_socktype, hostInfoList->ai_protocol); - if (sockid == -1) throw 1; - - status = connect(sockid, hostInfoList->ai_addr, hostInfoList->ai_addrlen); - if (status) throw 1;*/ -} - -void Socket::sendline(std::string line) { - throw 1; - /*ssize_t bytesSent; - - do { - int len = line.size(); - bytesSent = send(sockid, line.c_str(), len, 0); - - line = line.substr(bytesSent, line.size() - bytesSent); - } while (line.size() > 0); - - send(sockid, "\n", 1, 0); // add \n*/ -} - -std::string Socket::readline() { - throw 1; -} - -void Socket::clo() { -} -- cgit v1.2.3