Commit c47a4d09 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

And allocate a larger rxbuf while at it.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4045 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 3774fc2d
......@@ -769,7 +769,7 @@ http_process(struct vtclog *vl, const char *spec, int sock, int client)
hp->vl = vl;
hp->client = client;
hp->timeout = 3000;
hp->nrxbuf = 8192;
hp->nrxbuf = 64*1024;
hp->vsb = vsb_newauto();
hp->rxbuf = malloc(hp->nrxbuf); /* XXX */
AN(hp->rxbuf);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment