diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-05-30 15:48:42 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-05-30 15:51:02 +0200 |
commit | 5162e3b0ee7bd1d0fd6e75e1ca7993a1834b5291 (patch) | |
tree | 4ba7bb8d6e09af284cb72a0a7d8a0df4cee8da34 /utils.c | |
parent | b9178b9357798ae23a5724333cc6572d14f23958 (diff) |
allow request handlers to disable chunked reponses
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,7 +37,7 @@ bool uh_use_chunked(struct client *cl) void uh_chunk_write(struct client *cl, const void *data, int len) { - bool chunked = uh_use_chunked(cl); + bool chunked = cl->request.respond_chunked; if (cl->state == CLIENT_STATE_CLEANUP) return; @@ -60,7 +60,7 @@ void uh_chunk_vprintf(struct client *cl, const char *format, va_list arg) return; uloop_timeout_set(&cl->timeout, conf.network_timeout * 1000); - if (!uh_use_chunked(cl)) { + if (!cl->request.respond_chunked) { ustream_vprintf(cl->us, format, arg); return; } @@ -88,7 +88,7 @@ void uh_chunk_printf(struct client *cl, const char *format, ...) void uh_chunk_eof(struct client *cl) { - if (!uh_use_chunked(cl)) + if (!cl->request.respond_chunked) return; if (cl->state == CLIENT_STATE_CLEANUP) |