diff options
author | Ingela Anderton Andin <[email protected]> | 2018-11-05 11:11:27 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-11-05 13:19:19 +0100 |
commit | e64822b68ec1f06481af5ea776273b6dbb526d63 (patch) | |
tree | ba87b01ee86e26d0fef001b4aed4074edda5caa3 /lib/ssl/src/ssl_connection.erl | |
parent | 8f4eb75f5a8d3f76d4e5e1c7d56024c727358ac7 (diff) | |
download | otp-e64822b68ec1f06481af5ea776273b6dbb526d63.tar.gz otp-e64822b68ec1f06481af5ea776273b6dbb526d63.tar.bz2 otp-e64822b68ec1f06481af5ea776273b6dbb526d63.zip |
ssl: controlling_process should be allowed on transpor_accept sockets along
with handshake
Fix of commit 68d9244ae33e5eea36250c3bb9ffe046a4db5647
Diffstat (limited to 'lib/ssl/src/ssl_connection.erl')
-rw-r--r-- | lib/ssl/src/ssl_connection.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl index 8ccad74646..acd9f14f7b 100644 --- a/lib/ssl/src/ssl_connection.erl +++ b/lib/ssl/src/ssl_connection.erl @@ -621,6 +621,8 @@ init({call, From}, {start, {Opts, EmOpts}, Timeout}, catch throw:Error -> stop_and_reply(normal, {reply, From, {error, Error}}, State0) end; +init({call, From}, {new_user, _} = Msg, State, Connection) -> + handle_call(Msg, From, ?FUNCTION_NAME, State, Connection); init({call, From}, _Msg, _State, _Connection) -> {keep_state_and_data, [{reply, From, {error, notsup_on_transport_accept_socket}}]}; init(_Type, _Event, _State, _Connection) -> |