wip cgi handling, client contains it's own privates functions to handle request headers and body

This commit is contained in:
hugogogo
2022-08-01 19:30:07 +02:00
parent 031932e887
commit 979a3d20b8
12 changed files with 382 additions and 154 deletions

View File

@@ -21,7 +21,7 @@ std::string trim(std::string str, char c)
return str;
}
std::string itoa(int n)
std::string itos(int n)
{
std::stringstream strs;