diff options
author | Ingela Anderton Andin <[email protected]> | 2011-08-31 11:41:15 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-08-31 11:41:15 +0200 |
commit | bf8f3e3d5d928dfc63408439379d7a39880e730b (patch) | |
tree | eb555b6307076b0439994f0288f95c09974be4f2 /lib/ssl/src/ssl_session.erl | |
parent | 45942fb2f521ae7e043987eedc0d6197ba7b55b0 (diff) | |
parent | 4b0b4d1b8f61886182e93c546de59d08ff7b7caf (diff) | |
download | otp-bf8f3e3d5d928dfc63408439379d7a39880e730b.tar.gz otp-bf8f3e3d5d928dfc63408439379d7a39880e730b.tar.bz2 otp-bf8f3e3d5d928dfc63408439379d7a39880e730b.zip |
Merge branch 'ia/ssl/use-inet-and-gen-specs' into dev
* ia/ssl/use-inet-and-gen-specs:
Use inet and gen_* dialyzer specs
Diffstat (limited to 'lib/ssl/src/ssl_session.erl')
-rw-r--r-- | lib/ssl/src/ssl_session.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_session.erl b/lib/ssl/src/ssl_session.erl index 85c9fcb61c..a0643f616c 100644 --- a/lib/ssl/src/ssl_session.erl +++ b/lib/ssl/src/ssl_session.erl @@ -48,7 +48,7 @@ is_new(_ClientSuggestion, _ServerDecision) -> true. %%-------------------------------------------------------------------- --spec id({host(), port_num(), #ssl_options{}}, db_handle(), atom(), +-spec id({host(), inet:port_num(), #ssl_options{}}, db_handle(), atom(), undefined | binary()) -> binary(). %% %% Description: Should be called by the client side to get an id @@ -63,7 +63,7 @@ id(ClientInfo, Cache, CacheCb, OwnCert) -> end. %%-------------------------------------------------------------------- --spec id(port_num(), binary(), #ssl_options{}, db_handle(), +-spec id(inet:port_num(), binary(), #ssl_options{}, db_handle(), atom(), seconds(), binary()) -> binary(). %% %% Description: Should be called by the server side to get an id |