From bdedd1a910106af02dc7c24b5a91faa013b6c763 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Tue, 19 Jun 2018 13:30:50 +0800 Subject: [PATCH] max_http_header_pool2: migrate context ah pool limit and count to unsigned int --- lib/core/private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/private.h b/lib/core/private.h index 3eca89994..59559d884 100644 --- a/lib/core/private.h +++ b/lib/core/private.h @@ -863,6 +863,7 @@ struct lws_context { unsigned int timeout_secs; unsigned int pt_serv_buf_size; int max_http_header_data; + int max_http_header_pool; int simultaneous_ssl_restriction; int simultaneous_ssl; #if defined(LWS_WITH_PEER_LIMITS) @@ -889,7 +890,6 @@ struct lws_context { volatile int service_tid; int service_tid_detected; - short max_http_header_pool; short count_threads; short plugin_protocol_count; short plugin_extension_count;