diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-12-17 20:12:33 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-12-17 20:12:33 -0500 |
commit | 2f6649aa0b392fefe08e3eb604a93220a0c64324 (patch) | |
tree | 9d6ffc099b6ea7d9f7a8d0ec443b7ce22f709242 /src | |
parent | a24c2bdaf85c3d4eef19783e95b11d1cf15add09 (diff) |
Fix compilation of apps that don't use database; fix HTTP pipelining
Diffstat (limited to 'src')
-rw-r--r-- | src/c/http.c | 47 | ||||
-rw-r--r-- | src/cjr_print.sml | 2 |
2 files changed, 29 insertions, 20 deletions
diff --git a/src/c/http.c b/src/c/http.c index 230d07f0..c57740e9 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -73,7 +73,7 @@ static void log_debug(void *data, const char *fmt, ...) { static void *worker(void *data) { int me = *(int *)data; uw_context ctx = uw_request_new_context(me, &uw_application, NULL, log_error, log_debug); - size_t buf_size = 2; + size_t buf_size = 1024; char *buf = malloc(buf_size), *back = buf; uw_request_context rc = uw_new_request_context(); int sock = 0; @@ -99,28 +99,32 @@ static void *worker(void *data) { buf = new_buf; } - r = recv(sock, back, buf_size - 1 - (back - buf), 0); + *back = 0; + body = strstr(buf, "\r\n\r\n"); + if (body == NULL) { + r = recv(sock, back, buf_size - 1 - (back - buf), 0); - if (r < 0) { - if (!quiet) - fprintf(stderr, "Recv failed\n"); - close(sock); - sock = 0; - break; - } + if (r < 0) { + if (!quiet) + fprintf(stderr, "Recv failed\n"); + close(sock); + sock = 0; + break; + } - if (r == 0) { - if (!quiet) - printf("Connection closed.\n"); - close(sock); - sock = 0; - break; - } + if (r == 0) { + if (!quiet) + printf("Connection closed.\n"); + close(sock); + sock = 0; + break; + } - back += r; - *back = 0; + back += r; + *back = 0; + } - if ((body = strstr(buf, "\r\n\r\n"))) { + if (body != NULL || (body = strstr(buf, "\r\n\r\n"))) { request_result rr; int should_keepalive = 0; @@ -213,6 +217,11 @@ static void *worker(void *data) { s = headers; while ((s2 = strchr(s, '\r'))) { + if (s2 == s) { + *s = 0; + break; + } + s = s2; if (s[1] == 0) diff --git a/src/cjr_print.sml b/src/cjr_print.sml index 5d697eac..1fc0b40f 100644 --- a/src/cjr_print.sml +++ b/src/cjr_print.sml @@ -3364,7 +3364,7 @@ fun p_file env (ds, ps) = newline, string "static void uw_db_init(uw_context ctx) { };", newline, - string "static int uw_db_begin(uw_context ctx) { return 0; };", + string "static int uw_db_begin(uw_context ctx, int could_write) { return 0; };", newline, string "static void uw_db_close(uw_context ctx) { };", newline, |