Skip to content

Commit

Permalink
evapi: increased the static buffer size used for reading evapi responses
Browse files Browse the repository at this point in the history
- 32k instead of 4k

(cherry picked from commit c4fd918)
  • Loading branch information
miconda committed Sep 10, 2015
1 parent 9bb179f commit 8487422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/evapi/evapi_dispatch.c
Expand Up @@ -225,7 +225,7 @@ int evapi_dispatch_notify(char *obuf, int olen)
*/
void evapi_recv_client(struct ev_loop *loop, struct ev_io *watcher, int revents)
{
#define CLIENT_BUFFER_SIZE 4096
#define CLIENT_BUFFER_SIZE 32768
char rbuffer[CLIENT_BUFFER_SIZE];
ssize_t rlen;
int i, k;
Expand Down

0 comments on commit 8487422

Please sign in to comment.