Skip to content

Commit

Permalink
Merge pull request #2307 from fengzeroz/v2.8
Browse files Browse the repository at this point in the history
conn buf size: 8192
  • Loading branch information
fengzeroz authored Nov 11, 2024
2 parents cfde4a9 + ba65158 commit 199965c
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 199965c

Please sign in to comment.