Skip to content

Commit ac983f6

Browse files
pdgendtfabiobaltieri
authored andcommitted
net: lib: http: Use Kconfig constants
Replace Kconfig values with UINT32_MAX Signed-off-by: Pieter De Gendt <[email protected]>
1 parent 6c41368 commit ac983f6

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 4294967295
72+
range 64 $(UINT32_MAX)
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 4294967295
79+
range 64 $(UINT32_MAX)
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)