Skip to content

Commit

Permalink
conn buf size: 8192
Browse files Browse the repository at this point in the history
  • Loading branch information
fengzeroz committed Nov 11, 2024
1 parent 1a5a8e0 commit a420e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ neu_conn_t *neu_conn_new(neu_conn_param_t *param, void *data,
conn->disconnected = disconnected;
conn->connected = connected;

conn->buf_size = 2048;
conn->buf_size = 8192;
conn->buf = calloc(conn->buf_size, 1);
conn->offset = 0;
conn->stop = false;
Expand Down

0 comments on commit a420e91

Please sign in to comment.