aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_http_protocol.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2011-03-20 19:38:45 +0100
committerLoïc Hoguin <[email protected]>2011-03-20 19:38:45 +0100
commite40001a8843dbb802331a422c78ce65d7c660484 (patch)
tree349ade9d891a1b432383bf6bb76e0194c93e6624 /src/cowboy_http_protocol.erl
parenta1e56a2fba417b3b8d145e04b3de4ab8dc87af40 (diff)
downloadcowboy-e40001a8843dbb802331a422c78ce65d7c660484.tar.gz
cowboy-e40001a8843dbb802331a422c78ce65d7c660484.tar.bz2
cowboy-e40001a8843dbb802331a422c78ce65d7c660484.zip
Ensure a response is sent when the handler doesn't reply anything.
Diffstat (limited to 'src/cowboy_http_protocol.erl')
-rw-r--r--src/cowboy_http_protocol.erl22
1 files changed, 15 insertions, 7 deletions
diff --git a/src/cowboy_http_protocol.erl b/src/cowboy_http_protocol.erl
index e225b5c..2b5292c 100644
--- a/src/cowboy_http_protocol.erl
+++ b/src/cowboy_http_protocol.erl
@@ -156,18 +156,21 @@ handler_loop(HandlerState, Req, State=#state{handler={Handler, _Opts}}) ->
handler_terminate(HandlerState, Req, State=#state{handler={Handler, _Opts}}) ->
Res = (catch Handler:terminate(
Req#http_req{resp_state=locked}, HandlerState)),
- %% @todo We need to check if the Req has been replied to.
- %% All requests must have a reply, at worst an error.
- %% If a request started but wasn't completed, complete it.
+ %% @todo We must skip any body data from the request
+ %% before processing another.
+ ensure_response(Req, State),
case {Res, State#state.connection} of
{ok, keepalive} -> next_request(State);
_Closed -> terminate(State)
end.
--spec error_terminate(Code::http_status(), State::#state{}) -> ok.
-error_terminate(Code, State) ->
- error_response(Code, State#state{connection=close}),
- terminate(State).
+%% No response has been sent but everything apparently went fine.
+%% Reply with 204 No Content to indicate this.
+ensure_response(#http_req{resp_state=waiting}, State) ->
+ error_response(204, State);
+%% The handler has already fully replied to the client.
+ensure_response(#http_req{resp_state=done}, _State) ->
+ ok.
-spec error_response(Code::http_status(), State::#state{}) -> ok.
error_response(Code, #state{socket=Socket,
@@ -176,6 +179,11 @@ error_response(Code, #state{socket=Socket,
socket=Socket, transport=Transport,
connection=Connection, resp_state=waiting}).
+-spec error_terminate(Code::http_status(), State::#state{}) -> ok.
+error_terminate(Code, State) ->
+ error_response(Code, State#state{connection=close}),
+ terminate(State).
+
-spec terminate(State::#state{}) -> ok.
terminate(#state{socket=Socket, transport=Transport}) ->
Transport:close(Socket),