| 323 | } |
| 324 | |
| 325 | void Uri::clear() |
| 326 | { |
| 327 | _isValid = false; |
| 328 | _isSecure = false; |
| 329 | _scheme.clear(); |
| 330 | _username.clear(); |
| 331 | _password.clear(); |
| 332 | _host.clear(); |
| 333 | _hostName.clear(); |
| 334 | _hasAuthority = false; |
| 335 | _isCustomPort = false; |
| 336 | _port = 0; |
| 337 | _authority.clear(); |
| 338 | _pathEtc.clear(); |
| 339 | _path.clear(); |
| 340 | _query.clear(); |
| 341 | _fragment.clear(); |
| 342 | _queryParams.clear(); |
| 343 | } |
| 344 | |
| 345 | const std::vector<std::pair<std::string, std::string>>& Uri::getQueryParams() |
| 346 | { |
no outgoing calls
no test coverage detected