| 4543 | } |
| 4544 | |
| 4545 | inline size_t Request::get_param_value_count(const char* key) const { |
| 4546 | auto r = params.equal_range(key); |
| 4547 | return static_cast<size_t>(std::distance(r.first, r.second)); |
| 4548 | } |
| 4549 | |
| 4550 | inline bool Request::is_multipart_form_data() const { |
| 4551 | const auto& content_type = get_header_value("Content-Type"); |
nothing calls this directly
no outgoing calls
no test coverage detected