Skip to content

Commit 78c2f48

Browse files
rlubosnashif
authored andcommitted
net: lib: http_server: Remove upper bounds on buffer sizes
There's really no good reason to have an upper bound on the buffer sizes and this limits testing in some cases, so just remove them. Signed-off-by: Robert Lubos <[email protected]>
1 parent ccf2e9b commit 78c2f48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subsys/net/lib/http/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ config HTTP_SERVER_MAX_STREAMS
6969
config HTTP_SERVER_CLIENT_BUFFER_SIZE
7070
int "Client Buffer Size"
7171
default 256
72-
range 64 1024
72+
range 64 4294967295
7373
help
7474
This setting determines the buffer size for each client.
7575

7676
config HTTP_SERVER_HUFFMAN_DECODE_BUFFER_SIZE
7777
int "Size of the buffer used for decoding Huffman-encoded strings"
7878
default 256
79-
range 64 1024
79+
range 64 4294967295
8080
help
8181
Size of the buffer used for decoding Huffman-encoded strings when
8282
processing HPACK compressed headers. This effectively limits the

0 commit comments

Comments
 (0)