diff options
author | Ingela Anderton Andin <[email protected]> | 2011-08-22 16:59:36 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-08-31 11:31:48 +0200 |
commit | 4b0b4d1b8f61886182e93c546de59d08ff7b7caf (patch) | |
tree | ab90e74050c05ead80cbc9d440f450c502fc35f4 /lib/ssl/src/ssl_handshake.erl | |
parent | 59da37382c684657c73c0377509bd05e229e2d3b (diff) | |
download | otp-4b0b4d1b8f61886182e93c546de59d08ff7b7caf.tar.gz otp-4b0b4d1b8f61886182e93c546de59d08ff7b7caf.tar.bz2 otp-4b0b4d1b8f61886182e93c546de59d08ff7b7caf.zip |
Use inet and gen_* dialyzer specs
Diffstat (limited to 'lib/ssl/src/ssl_handshake.erl')
-rw-r--r-- | lib/ssl/src/ssl_handshake.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_handshake.erl b/lib/ssl/src/ssl_handshake.erl index 4e74aec4ac..bf1c52a447 100644 --- a/lib/ssl/src/ssl_handshake.erl +++ b/lib/ssl/src/ssl_handshake.erl @@ -48,7 +48,7 @@ %% Internal application API %%==================================================================== %%-------------------------------------------------------------------- --spec client_hello(host(), port_num(), #connection_states{}, +-spec client_hello(host(), inet:port_num(), #connection_states{}, #ssl_options{}, boolean(), der_cert()) -> #client_hello{}. %% %% Description: Creates a client hello message. @@ -106,7 +106,7 @@ hello_request() -> %%-------------------------------------------------------------------- -spec hello(#server_hello{} | #client_hello{}, #ssl_options{}, - #connection_states{} | {port_num(), #session{}, db_handle(), + #connection_states{} | {inet:port_num(), #session{}, db_handle(), atom(), #connection_states{}, binary()}, boolean()) -> {tls_version(), session_id(), #connection_states{}}| {tls_version(), {resumed | new, #session{}}, |