fix missing request headers

This commit is contained in:
2024-12-31 11:29:05 -06:00
parent bf700b9d59
commit ae7d5fe284
5 changed files with 51 additions and 38 deletions

View File

@ -468,7 +468,7 @@ struct http_range final {
std::uint64_t end{};
};
using http_headers = std::unordered_map<std::string, std::string>;
using http_headers = std::map<std::string, std::string>;
using http_query_parameters = std::map<std::string, std::string>;
using http_ranges = std::vector<http_range>;
#endif // defined(PROJECT_ENABLE_CURL)