diff options
author | Ingela Anderton Andin <[email protected]> | 2018-04-20 19:50:17 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-05-23 13:09:45 +0200 |
commit | 72aaa1bb0cd2352fc8708a1a89b44e5791f49356 (patch) | |
tree | 63cb1ca78c7b282432beedf5a2e821ca526757d2 /lib/ssl/src/ssl_internal.hrl | |
parent | f03603762806ac96cdca4a2c4f3b2b8b3190741a (diff) | |
download | otp-72aaa1bb0cd2352fc8708a1a89b44e5791f49356.tar.gz otp-72aaa1bb0cd2352fc8708a1a89b44e5791f49356.tar.bz2 otp-72aaa1bb0cd2352fc8708a1a89b44e5791f49356.zip |
ssl: Generalize DTLS packet multiplexing
We want to prepare the code for more advanced DTLS usage and possibility
to run over SCTP. First assumption was that the demultiplexer process
"dtls listener" was needed for UDP only and SCTP could be made more TLS
like. However the assumption seems not to hold. This commit prepares
for customization possibilities.
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 5df00de0e5..977d012fa7 100644 --- a/lib/ssl/src/ssl_internal.hrl +++ b/lib/ssl/src/ssl_internal.hrl @@ -160,7 +160,7 @@ -record(config, {ssl, %% SSL parameters inet_user, %% User set inet options emulated, %% Emulated option list or "inherit_tracker" pid - udp_handler, + dtls_handler, inet_ssl, %% inet options for internal ssl socket transport_info, %% Callback info connection_cb |