Merge remote-tracking branch 'origin/roman' into fara

This commit is contained in:
Talyx
2022-01-30 12:37:19 +03:00
7 changed files with 86 additions and 29 deletions

View File

@@ -47,6 +47,11 @@ int Client::getFd(void)
return _fd;
}
unsigned int Client::getCounter(void) const
{
return _sended;
}
void Client::setRawData(char *str)
{
this->_buff = str;

View File

@@ -30,6 +30,7 @@ public:
Request getRequest(void);
Response getResponse(void);
std::string getStrToSend(void);
unsigned int getCounter(void) const;
void setRawData(char *);
void setFd(int);
int getFd(void);