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_connection.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_connection.hrl')
-rw-r--r-- | lib/ssl/src/ssl_connection.hrl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_connection.hrl b/lib/ssl/src/ssl_connection.hrl index bb41ef2b62..7682cb86ea 100644 --- a/lib/ssl/src/ssl_connection.hrl +++ b/lib/ssl/src/ssl_connection.hrl @@ -75,7 +75,7 @@ renegotiation :: undefined | {boolean(), From::term() | internal | peer}, start_or_recv_from :: term(), timer :: undefined | reference(), % start_or_recive_timer - send_queue :: queue:queue(), + %%send_queue :: queue:queue(), terminated = false ::boolean(), allow_renegotiate = true ::boolean(), expecting_next_protocol_negotiation = false ::boolean(), @@ -83,7 +83,8 @@ negotiated_protocol = undefined :: undefined | binary(), client_ecc, % {Curves, PointFmt} tracker :: pid() | 'undefined', %% Tracker process for listen socket - sni_hostname = undefined + sni_hostname = undefined, + downgrade }). -define(DEFAULT_DIFFIE_HELLMAN_PARAMS, |