Client struct, signal wip, refactoring
This commit is contained in:
27
srcs/Client.hpp
Normal file
27
srcs/Client.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
#ifndef CLIENT_HPP
|
||||
# define CLIENT_HPP
|
||||
|
||||
# include <iostream>
|
||||
# include <string>
|
||||
# include <map>
|
||||
|
||||
class Client
|
||||
{
|
||||
public:
|
||||
// Client(Placeholder);
|
||||
// Client();
|
||||
// Client(Client const &src);
|
||||
// ~Client();
|
||||
// Client &operator=(Client const &rhs);
|
||||
|
||||
int fd;
|
||||
std::string raw_request;
|
||||
std::map<std::string, std::string> request;
|
||||
std::map<std::string, std::string> response;
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user