Added arguments support to URL parser

This commit is contained in:
Thulinma 2017-01-15 23:42:42 +01:00
parent 40f1cec8f9
commit 35fbafc831
2 changed files with 8 additions and 1 deletions

View file

@ -77,7 +77,8 @@ namespace HTTP {
std::string host;///< Hostname or IP address of URL
std::string protocol;///<Protocol of URL
std::string port;///<Port of URL
std::string path;///<Path after the first slash, not inclusive
std::string path;///<Path after the first slash (not inclusive) but before any question mark
std::string args;///<Everything after the question mark in the path, if it was present
};
}//HTTP namespace