1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 02:13:13 +02:00

m_httpd: make http headers case insensitive

This commit is contained in:
Adam
2018-03-26 20:21:06 -04:00
parent 1baf774647
commit d25722ddd0
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ struct HTTPReply
{
HTTPError error;
Anope::string content_type;
std::map<Anope::string, Anope::string> headers;
std::map<Anope::string, Anope::string, ci::less> headers;
typedef std::list<std::pair<Anope::string, Anope::string> > cookie;
std::vector<cookie> cookies;