aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_connection.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2013-11-27 11:05:35 +0100
committerIngela Anderton Andin <[email protected]>2013-12-02 09:50:28 +0100
commit174b36ae2755b501e2b3152f6b00e9c59a90e848 (patch)
tree2be254c040f5c83ffaf1ecbcf650e6d06acbc8da /lib/ssl/src/ssl_connection.erl
parent1b6cb772ce5d1d1b7ce280c22e6a8d2ceb8165ed (diff)
downloadotp-174b36ae2755b501e2b3152f6b00e9c59a90e848.tar.gz
otp-174b36ae2755b501e2b3152f6b00e9c59a90e848.tar.bz2
otp-174b36ae2755b501e2b3152f6b00e9c59a90e848.zip
ssl: Trap exits
Diffstat (limited to 'lib/ssl/src/ssl_connection.erl')
-rw-r--r--lib/ssl/src/ssl_connection.erl7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl
index 8dac0a3f12..b7c1b9e8d0 100644
--- a/lib/ssl/src/ssl_connection.erl
+++ b/lib/ssl/src/ssl_connection.erl
@@ -822,6 +822,13 @@ handle_info({'DOWN', MonitorRef, _, _, _}, _,
State = #state{user_application={MonitorRef,_Pid}}) ->
{stop, normal, State};
+%%% So that terminate will be run when supervisor issues shutdown
+handle_info({'EXIT', _Sup, shutdown}, _StateName, State) ->
+ {stop, shutdown, State};
+handle_info({'EXIT', Socket, normal}, _StateName, #state{socket = Socket} = State) ->
+ %% Handle as transport close"
+ {stop, {shutdown, transport_closed}, State};
+
handle_info(allow_renegotiate, StateName, State) ->
{next_state, StateName, State#state{allow_renegotiate = true}, get_timeout(State)};