| 4872 | } |
| 4873 | |
| 4874 | inline bool Request::is_multipart_form_data() const { |
| 4875 | const auto &content_type = get_header_value("Content-Type"); |
| 4876 | return !content_type.rfind("multipart/form-data", 0); |
| 4877 | } |
| 4878 | |
| 4879 | inline bool Request::has_file(const std::string &key) const { |
| 4880 | return files.find(key) != files.end(); |
no test coverage detected