From e4654d1a6a657faf13bfee2bc53aace2f718b3d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ondr=CC=8Cej=20Sury=CC=81?= Date: Thu, 10 Nov 2022 16:34:26 +0100 Subject: [PATCH] Bump the allowed HTTP headers in statschannel to 100 Firefox 90+ apparently sends more than 10 headers, so we need to bump the number to some higher number. Bump it to 100 just to be on a save side, this is for internal use only anyway. --- lib/isc/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/isc/httpd.c b/lib/isc/httpd.c index aee63f8a932..c91847088d7 100644 --- a/lib/isc/httpd.c +++ b/lib/isc/httpd.c @@ -51,7 +51,7 @@ */ #define HTTP_RECVLEN ISC_NETMGR_TCP_RECVBUF_SIZE * 2 #define HTTP_SENDLEN ISC_NETMGR_TCP_RECVBUF_SIZE -#define HTTP_HEADERS_NUM 10 +#define HTTP_HEADERS_NUM 100 #define HTTP_MAX_REQUEST_LEN 4096 #define HTTPD_CLOSE 0x0001 /* Got a Connection: close header */ -- 2.47.3