Fix http_request parse url and throw string

This commit is contained in:
marcelb 2023-06-22 18:37:03 +02:00
parent 394e4aa923
commit f6bb632af2
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ api::api(defapi* _def, const string _method, const string _path, const map<strin
body = _body; body = _body;
if (!validate()) { if (!validate()) {
throw "[ERROR] The API is not correct "; throw string("[ERROR] The API is not correct ");
} }
} }

View File

@ -21,7 +21,7 @@ http_request::http_request(const string _raw) {
void http_request::parse() { void http_request::parse() {
method = raw.substr(0, raw.find(" ")); method = raw.substr(0, raw.find(" "));
url = raw.substr(raw.find("/"), raw.find("HTTP/")-raw.find("/")); url = raw.substr(raw.find("/"), raw.find("HTTP/")-raw.find("/")-1);
string _headers = raw.substr(raw.find("\r\n")+2, raw.find("\r\n\r\n")-raw.find("\r\n")); string _headers = raw.substr(raw.find("\r\n")+2, raw.find("\r\n\r\n")-raw.find("\r\n"));
while (!_headers.empty()) { while (!_headers.empty()) {