diff options
author | Ingela Anderton Andin <[email protected]> | 2016-03-24 17:08:44 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-05-03 13:46:50 +0200 |
commit | 67de1ba82d1af910dc6ab6d41a1f22dbfb39f658 (patch) | |
tree | d5e60bb5228d1784b22a33b4980959cba0281368 /lib/ssl/src/ssl_internal.hrl | |
parent | 94e70f82df417d9e673a13d101007d7ae8932df7 (diff) | |
download | otp-67de1ba82d1af910dc6ab6d41a1f22dbfb39f658.tar.gz otp-67de1ba82d1af910dc6ab6d41a1f22dbfb39f658.tar.bz2 otp-67de1ba82d1af910dc6ab6d41a1f22dbfb39f658.zip |
ssl: Use gen_statem instead of gen_fsm
Also reduce timing issues in tests
Diffstat (limited to 'lib/ssl/src/ssl_internal.hrl')
-rw-r--r-- | lib/ssl/src/ssl_internal.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_internal.hrl b/lib/ssl/src/ssl_internal.hrl index 9c52f5a315..076e663cd4 100644 --- a/lib/ssl/src/ssl_internal.hrl +++ b/lib/ssl/src/ssl_internal.hrl @@ -118,7 +118,7 @@ %% undefined if not hibernating, or number of ms of %% inactivity after which ssl_connection will go into %% hibernation - hibernate_after :: boolean() | 'undefined', + hibernate_after :: timeout(), %% This option should only be set to true by inet_tls_dist erl_dist = false :: boolean(), alpn_advertised_protocols = undefined :: [binary()] | undefined , |