Request implementation
| 4449 | |
| 4450 | // Request implementation |
| 4451 | inline bool Request::has_header(const char *key) const { |
| 4452 | return detail::has_header(headers, key); |
| 4453 | } |
| 4454 | |
| 4455 | inline std::string Request::get_header_value(const char *key, size_t id) const { |
| 4456 | return detail::get_header_value(headers, key, id, ""); |
no test coverage detected