diff options
author | Ingela Anderton Andin <[email protected]> | 2014-05-20 10:45:12 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-05-26 15:51:23 +0200 |
commit | a59c6b8e80125298a53436e29bf739ccf0f557a7 (patch) | |
tree | 62f822c447a72e3f8b00e9d362bf8a2332263783 /lib/ssl/src/ssl_connection.hrl | |
parent | d53ed66e32384be522d29b8d08db68bf46230da4 (diff) | |
download | otp-a59c6b8e80125298a53436e29bf739ccf0f557a7.tar.gz otp-a59c6b8e80125298a53436e29bf739ccf0f557a7.tar.bz2 otp-a59c6b8e80125298a53436e29bf739ccf0f557a7.zip |
ssl: Add ssl options to listen options tracker
Diffstat (limited to 'lib/ssl/src/ssl_connection.hrl')
-rw-r--r-- | lib/ssl/src/ssl_connection.hrl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.hrl b/lib/ssl/src/ssl_connection.hrl index b01c6cb1b3..592889b177 100644 --- a/lib/ssl/src/ssl_connection.hrl +++ b/lib/ssl/src/ssl_connection.hrl @@ -78,7 +78,8 @@ allow_renegotiate = true ::boolean(), expecting_next_protocol_negotiation = false ::boolean(), next_protocol = undefined :: undefined | binary(), - client_ecc % {Curves, PointFmt} + client_ecc, % {Curves, PointFmt} + tracker :: pid() %% Tracker process for listen socket }). -define(DEFAULT_DIFFIE_HELLMAN_PARAMS, |