From c25b1b9b09840a9848b31c1867c457f19d1a1c28 Mon Sep 17 00:00:00 2001 From: jcorporation Date: Tue, 19 Nov 2024 19:35:06 +0100 Subject: [PATCH] Fix: Increase max header count from 30 to 50 --- CHANGELOG.md | 1 + dist/mongoose/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78506147c..f3f301d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ This is a small maintenance release. - Upd: bootstrap.native 5.1 #1372 - Upd: Improve local playback - Fix: Support "contains" and "starts_with" sticker operators +- Fix: Increase max header count from 30 to 50 *** diff --git a/dist/mongoose/CMakeLists.txt b/dist/mongoose/CMakeLists.txt index 339f3a0e1..04d9c712e 100644 --- a/dist/mongoose/CMakeLists.txt +++ b/dist/mongoose/CMakeLists.txt @@ -16,6 +16,7 @@ target_compile_options(mongoose "-DMG_ENABLE_DIRLIST=1" "-DMG_ENABLE_SSI=0" "-DMG_TLS=MG_TLS_OPENSSL" + "-DMG_MAX_HTTP_HEADERS=50" ) if(CMAKE_BUILD_TYPE MATCHES "(Debug|Release|RelWithDebInfo|MinSizeRel)")