From bb9074cbd585ca1b595b7520b5bf38c4619eed62 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 4 May 2025 14:39:51 +0100 Subject: [PATCH] Fix HTTP headers to be case insensitive as required by the spec. --- include/modules/httpd.h | 8 ++++---- 1 file 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 headers; - std::map cookies; - std::map get_data; - std::map post_data; + std::map headers; + std::map cookies; + std::map get_data; + std::map post_data; Anope::string content; };