| 633 | } |
| 634 | |
| 635 | std::optional<std::string> HTTPRequest::GetQueryParameter(const std::string_view key) const |
| 636 | { |
| 637 | return GetQueryParameterFromUri(m_target, key); |
| 638 | } |
| 639 | |
| 640 | // See libevent http.c evhttp_parse_query_impl() |
| 641 | // and https://www.rfc-editor.org/rfc/rfc3986#section-3.4 |
no test coverage detected