| 162 | int ParseURL(const char* url, std::string* scheme, std::string* host, int* port); |
| 163 | |
| 164 | inline void URI::SetQuery(const std::string& key, const std::string& value) { |
| 165 | get_query_map()[key] = value; |
| 166 | _query_was_modified = true; |
| 167 | } |
| 168 | |
| 169 | inline size_t URI::RemoveQuery(const char* key) { |
| 170 | if (get_query_map().erase(key)) { |