diff options
author | Ingela Anderton Andin <[email protected]> | 2014-05-14 09:41:55 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-05-14 09:41:55 +0200 |
commit | a56077709c1a6a25e19c7b5efc5fcfaa223a36c1 (patch) | |
tree | 035655f08328827eb564c8f3b403eb17ac89e789 /lib | |
parent | f5cc8e99d4b717296880d6959bf2510ad056ae9b (diff) | |
download | otp-a56077709c1a6a25e19c7b5efc5fcfaa223a36c1.tar.gz otp-a56077709c1a6a25e19c7b5efc5fcfaa223a36c1.tar.bz2 otp-a56077709c1a6a25e19c7b5efc5fcfaa223a36c1.zip |
ssl: Fix dialyzer spec
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/src/ssl_socket.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_socket.erl b/lib/ssl/src/ssl_socket.erl index e42d637301..8532788ffd 100644 --- a/lib/ssl/src/ssl_socket.erl +++ b/lib/ssl/src/ssl_socket.erl @@ -162,10 +162,11 @@ handle_cast(_, State)-> {noreply, State}. %%-------------------------------------------------------------------- --spec handle_info(msg(), #state{}) -> {noreply, #state{}}. +-spec handle_info(msg(), #state{}) -> {stop, reason(), #state{}}. %% Possible return values not used now. +%% {noreply, #state{}}. %% |{noreply, #state{}, timeout()} | -%% {stop, reason(), #state{}}. +%% %% %% Description: Handling all non call/cast messages %%------------------------------------------------------------------- |