Skip to content

Commit

Permalink
increase size of http server header buffer
Browse files Browse the repository at this point in the history
see #1873
  • Loading branch information
Techatrix committed Apr 25, 2024
1 parent 70bdb7a commit e9f6740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config_gen/config_gen.zig
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ fn httpGET(allocator: std.mem.Allocator, uri: std.Uri) !Response {
defer client.deinit();
try client.initDefaultProxies(arena_allocator.allocator());

var server_header_buffer: [1024]u8 = undefined;
var server_header_buffer: [16 * 1024]u8 = undefined;

var request = try client.open(
.GET,
Expand Down

0 comments on commit e9f6740

Please sign in to comment.