implemented processing of incoming client connection

This commit is contained in:
bettercallous
2024-04-09 00:31:39 +00:00
parent c315be1dcd
commit 4c1b396154
6 changed files with 48 additions and 3 deletions

7
Client.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "Client.hpp"
Client::Client() {}
Client::Client(int fd, std::string addr) : _fd(fd), _addr(addr) {}
Client::~Client() {}