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

17
Client.hpp Normal file
View File

@@ -0,0 +1,17 @@
#ifndef CLIENT_HPP
#define CLIENT_HPP
#include <iostream>
class Client {
private:
int _fd;
std::string _addr;
public:
Client();
Client(int fd, std::string addr);
~Client();
};
#endif