added http headers to readme

This commit is contained in:
hugogogo
2022-07-29 14:15:15 +02:00
parent 035dbe804d
commit 06ff3a4ea9
6 changed files with 273 additions and 18 deletions

View File

@@ -63,8 +63,12 @@ class Webserv
void _listen(int socket_fd, unsigned int max_connections);
// TMP HUGO TEST CGI
void _serve_file(int fd, std::string page);
void _exec_cgi_script(int fd);
//
void _serve_file(Client *client, std::string page);
void _exec_cgi_script(Client *client);
void _parse_request();
//
// END TMP HUGO TEST CGI
};
#endif