diff options
author | Adam <Adam@anope.org> | 2018-03-26 20:21:06 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2018-03-26 20:21:06 -0400 |
commit | d25722ddd0766cba2c33614e326d241d3f1f7eeb (patch) | |
tree | efef2d4cc3826fb4c5a9bdaeb4ac785e1b3544fd /modules/m_httpd.cpp | |
parent | 1baf774647f138a080b38aab6beeb8626f32abed (diff) |
m_httpd: make http headers case insensitive
Diffstat (limited to 'modules/m_httpd.cpp')
-rw-r--r-- | modules/m_httpd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/m_httpd.cpp b/modules/m_httpd.cpp index 193da975a..45bad002e 100644 --- a/modules/m_httpd.cpp +++ b/modules/m_httpd.cpp @@ -199,7 +199,7 @@ class MyHTTPClient : public HTTPClient this->page = this->provider->FindPage(targ); this->page_name = targ; } - else if (buf.find("Cookie: ") == 0) + else if (buf.find_ci("Cookie: ") == 0) { spacesepstream sep(buf.substr(8)); Anope::string token; @@ -215,7 +215,7 @@ class MyHTTPClient : public HTTPClient this->message.cookies[token.substr(0, sz)] = token.substr(sz + 1, end); } } - else if (buf.find("Content-Length: ") == 0) + else if (buf.find_ci("Content-Length: ") == 0) { try { |