diff options
author | Ingela Anderton Andin <[email protected]> | 2018-11-19 13:50:35 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2018-12-03 19:42:07 +0100 |
commit | 6168cf2f5f8b5839b1a56ce870658d76faf3c22f (patch) | |
tree | 9333480a078138395129acb89cdce3a7acb8ef6d /lib/ssl/doc/src | |
parent | 19c6875fb10935864f6f28607c61700eaf56c59a (diff) | |
download | otp-6168cf2f5f8b5839b1a56ce870658d76faf3c22f.tar.gz otp-6168cf2f5f8b5839b1a56ce870658d76faf3c22f.tar.bz2 otp-6168cf2f5f8b5839b1a56ce870658d76faf3c22f.zip |
ssl: Internaly use {active, N}
Make next_record an internal help function to next_event and avoid
duplicate calls to tls_socket:setopts for setting the active option.
Diffstat (limited to 'lib/ssl/doc/src')
-rw-r--r-- | lib/ssl/doc/src/ssl_app.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/ssl/doc/src/ssl_app.xml b/lib/ssl/doc/src/ssl_app.xml index f6d9021d4a..53b899058f 100644 --- a/lib/ssl/doc/src/ssl_app.xml +++ b/lib/ssl/doc/src/ssl_app.xml @@ -171,6 +171,20 @@ shutdown gracefully. Defaults to 5000 milliseconds. </p> </item> + + <tag><c><![CDATA[internal_active_n = integer() <optional>]]></c></tag> + <item> + <p> + For TLS connections this value is used to handle the + internal socket. As the implementation was changed from an + active once to an active N behavior (N = 100), for + performance reasons, this option exist for possible tweaking + or restoring of the old behavior (internal_active_n = 1) in + unforeseen scenarios. This option will not affect erlang + distribution over TLS that will always run in active N mode. + Added in ssl-9.1 (OTP-21.2). + </p> + </item> </taglist> </section> |