more tests on cgi

This commit is contained in:
hugogogo
2022-07-28 17:27:03 +02:00
parent 8477669e6f
commit e6ec3fe97b
10 changed files with 104 additions and 338 deletions

View File

@@ -51,6 +51,10 @@ class Webserv
void _accept_connection(int fd);
void _read_request(int fd);
void _send_response(int fd);
// TMP HUGO TEST CGI
void _serve_file(int fd, std::string page);
void _exec_cgi_script(int fd);
};
#endif