kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 1671698f58549dda35563c1d8eb40ace3b8cea32
parent a88b8de6a2c3500a44df312d0dd341d5b1a12705
Author: Joris Vink <joris@coders.se>
Date:   Wed, 22 May 2013 12:50:20 +0200

increase sbuf length substantially

Diffstat:
src/http.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/http.c b/src/http.c @@ -146,7 +146,7 @@ http_response(struct http_request *req, int status, u_int8_t *d, u_int32_t len) struct kore_buf *buf; u_int8_t *htext; struct spdy_header_block *hblock; - char sbuf[64]; + char sbuf[512]; kore_log("http_response(%p, %d, %p, %d)", req, status, d, len);