split respone.cpp file

This commit is contained in:
LuckyLaszlo
2022-08-08 20:36:01 +02:00
parent 7fdc81f5f4
commit a44b9b493a
7 changed files with 311 additions and 308 deletions

View File

@@ -68,7 +68,7 @@ http_method str_to_http_method(std::string &str)
return POST;
else if (str == "DELETE")
return DELETE;
else if (str == "ALL_METHODS")
else if (str == "ALL_METHODS") // for Eric: why this test ? can we delete it?
return ANY_METHODS;
// would prefere ALL_METHODS
return UNKNOWN;