Skip to content

Commit

Permalink
http/server: increase BUFSIZE_MAX to 1 MB
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Jan 13, 2025
1 parent f929020 commit 11dfeb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
enum {
TIMEOUT_IDLE = 600000,
TIMEOUT_INIT = 10000,
BUFSIZE_MAX = 524288,
BUFSIZE_MAX = 1024 * 1024 * 1, /* 1 MB */
};

struct http_sock {
Expand Down

0 comments on commit 11dfeb5

Please sign in to comment.