| 28 | } |
| 29 | |
| 30 | HTTPResponseHeaderSetup parseHTTPResponseHeaders(const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix) |
| 31 | { |
| 32 | std::unordered_map<String, String> http_response_headers_override = baseParseHTTPResponseHeaders(config, config_prefix); |
| 33 | |
| 34 | if (http_response_headers_override.empty()) |
| 35 | return {}; |
| 36 | |
| 37 | return std::move(http_response_headers_override); |
| 38 | } |
| 39 | |
| 40 | std::unordered_map<String, String> parseHTTPResponseHeaders( |
| 41 | const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix, const std::string & default_content_type) |
no test coverage detected