diff options
-rw-r--r-- | include/modules/httpd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/modules/httpd.h b/include/modules/httpd.h index 5b555fbab..03d157df0 100644 --- a/include/modules/httpd.h +++ b/include/modules/httpd.h @@ -83,10 +83,10 @@ struct HTTPReply final /* A message from someone */ struct HTTPMessage final { - std::map<Anope::string, Anope::string> headers; - std::map<Anope::string, Anope::string> cookies; - std::map<Anope::string, Anope::string> get_data; - std::map<Anope::string, Anope::string> post_data; + std::map<Anope::string, Anope::string, ci::less> headers; + std::map<Anope::string, Anope::string, ci::less> cookies; + std::map<Anope::string, Anope::string, ci::less> get_data; + std::map<Anope::string, Anope::string, ci::less> post_data; Anope::string content; }; |