diff options
author | Ingela Anderton Andin <[email protected]> | 2013-04-25 09:35:29 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-05-08 10:39:20 +0200 |
commit | 12e72ac76d2f94fd78beeb58f27105d8007cdeb0 (patch) | |
tree | 18955f50ece00ecff216afe3bfa4890db4e81b07 /lib/ssl/src/ssl_connection.erl | |
parent | 94cafd5217f6c295cc53c4354a40ca672d3acc0b (diff) | |
download | otp-12e72ac76d2f94fd78beeb58f27105d8007cdeb0.tar.gz otp-12e72ac76d2f94fd78beeb58f27105d8007cdeb0.tar.bz2 otp-12e72ac76d2f94fd78beeb58f27105d8007cdeb0.zip |
ssl: Improve extention handling
Diffstat (limited to 'lib/ssl/src/ssl_connection.erl')
-rw-r--r-- | lib/ssl/src/ssl_connection.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl index 750604c8b6..25a293f125 100644 --- a/lib/ssl/src/ssl_connection.erl +++ b/lib/ssl/src/ssl_connection.erl @@ -98,7 +98,8 @@ terminated = false, % allow_renegotiate = true, expecting_next_protocol_negotiation = false :: boolean(), - next_protocol = undefined :: undefined | binary() + next_protocol = undefined :: undefined | binary(), + client_ecc % {Curves, PointFmt} }). -define(DEFAULT_DIFFIE_HELLMAN_PARAMS, |