From 7e745824324187ed7b4559bc7c4eb6e40e87567c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 15 Mar 2012 23:05:40 +0100 Subject: Don't close requests when the replied body is chunked --- src/cowboy_http_protocol.erl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cowboy_http_protocol.erl b/src/cowboy_http_protocol.erl index c5a6f7f..6125d83 100644 --- a/src/cowboy_http_protocol.erl +++ b/src/cowboy_http_protocol.erl @@ -410,15 +410,15 @@ ensure_response(#http_req{resp_state=done}) -> ensure_response(Req=#http_req{resp_state=waiting}) -> _ = cowboy_http_req:reply(204, [], [], Req), ok; -%% Close the chunked reply. +%% Terminate the chunked body for HTTP/1.1 only. ensure_response(#http_req{method='HEAD', resp_state=chunks}) -> - close; + ok; ensure_response(#http_req{version={1, 0}, resp_state=chunks}) -> - close; + ok; ensure_response(#http_req{socket=Socket, transport=Transport, resp_state=chunks}) -> Transport:send(Socket, <<"0\r\n\r\n">>), - close. + ok. %% Only send an error reply if there is no resp_sent message. -spec error_terminate(cowboy_http:status(), #state{}) -> ok. -- cgit v1.2.3