Request implementation
| 4833 | |
| 4834 | // Request implementation |
| 4835 | inline bool Request::has_header(const std::string &key) const { |
| 4836 | return detail::has_header(headers, key); |
| 4837 | } |
| 4838 | |
| 4839 | inline std::string Request::get_header_value(const std::string &key, |
| 4840 | size_t id) const { |
no test coverage detected