| 245 | std::string url::host() const { return str(impl_->host); } |
| 246 | std::string url::port() const { return str(impl_->port); } |
| 247 | std::string url::path() const { return str(impl_->path); } |
| 248 | |
| 249 | std::string url::host_port() const { return host() + ":" + port(); } |
| 250 |
no test coverage detected