From 2131a935e6a9b602ce068359cae6164d43f8cb57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 19 Mar 2011 02:21:55 +0100 Subject: Notify the client that we're closing the connection after the error reply. --- src/cowboy_http_protocol.erl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/cowboy_http_protocol.erl') diff --git a/src/cowboy_http_protocol.erl b/src/cowboy_http_protocol.erl index 6af10fd..6aff959 100644 --- a/src/cowboy_http_protocol.erl +++ b/src/cowboy_http_protocol.erl @@ -139,10 +139,9 @@ handler_terminate(HandlerState, Req, State=#state{handler={Handler, _Opts}}) -> end. -spec error_terminate(Code::http_status(), State::#state{}) -> ok. -error_terminate(Code, State=#state{socket=Socket, transport=Transport, - connection=Connection}) -> +error_terminate(Code, State=#state{socket=Socket, transport=Transport}) -> cowboy_http_req:reply(Code, [], [], #http_req{socket=Socket, - transport=Transport, connection=Connection}), + transport=Transport, connection=close}), terminate(State). -spec terminate(State::#state{}) -> ok. -- cgit v1.2.3