aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_tls.erl
diff options
context:
space:
mode:
authorNelson Vides <[email protected]>2021-04-20 14:58:58 +0200
committerLoïc Hoguin <[email protected]>2023-12-21 15:01:33 +0100
commit5ef64557b5b4c92224d68d1445cdb7846a76a0be (patch)
treea9bab5b54dc25b15de13708118645f69294c570c /src/cowboy_tls.erl
parentf74b69c3edd6e8c8891a3a8e18d14c8ae93bf5c4 (diff)
downloadcowboy-5ef64557b5b4c92224d68d1445cdb7846a76a0be.tar.gz
cowboy-5ef64557b5b4c92224d68d1445cdb7846a76a0be.tar.bz2
cowboy-5ef64557b5b4c92224d68d1445cdb7846a76a0be.zip
Exit gracefully on {error,closed} when reading the PROXY header
LH: Simplified the test a little.
Diffstat (limited to 'src/cowboy_tls.erl')
-rw-r--r--src/cowboy_tls.erl16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/cowboy_tls.erl b/src/cowboy_tls.erl
index c049ecb..4385cbc 100644
--- a/src/cowboy_tls.erl
+++ b/src/cowboy_tls.erl
@@ -33,13 +33,7 @@ start_link(Ref, Transport, Opts) ->
-spec connection_process(pid(), ranch:ref(), module(), cowboy:opts()) -> ok.
connection_process(Parent, Ref, Transport, Opts) ->
- ProxyInfo = case maps:get(proxy_header, Opts, false) of
- true ->
- {ok, ProxyInfo0} = ranch:recv_proxy_header(Ref, 1000),
- ProxyInfo0;
- false ->
- undefined
- end,
+ ProxyInfo = get_proxy_info(Ref, Opts),
{ok, Socket} = ranch:handshake(Ref),
case ssl:negotiated_protocol(Socket) of
{ok, <<"h2">>} ->
@@ -54,3 +48,11 @@ init(Parent, Ref, Socket, Transport, ProxyInfo, Opts, Protocol) ->
supervisor -> process_flag(trap_exit, true)
end,
Protocol:init(Parent, Ref, Socket, Transport, ProxyInfo, Opts).
+
+get_proxy_info(Ref, #{proxy_header := true}) ->
+ case ranch:recv_proxy_header(Ref, 1000) of
+ {ok, ProxyInfo} -> ProxyInfo;
+ {error, closed} -> exit({shutdown, closed})
+ end;
+get_proxy_info(_, _) ->
+ undefined.