Use TCP_NODELAY on TLS sockets to speed up the TLS handshake. #1214
+63
−30
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Setting TCP_NODELAY on TLS sockets speeds up the TLS handshake.
Also noted on https://docs.openssl.org/3.4/man3/SSL_connect/#notes.
It was observed that during the handshake the server waits before sending more handshake data for the client ACK (Nagle's algorithm), which is delayed because the client waits for more data before ACKing (delayed ACK).
Old versions of OSes don't seem to experience the handshake delay (e.g., Ubuntu 20.04).
Tested with the same compiled versions of Unbound and OpenSSL across OS versions.
Maybe something changed in the kernel (or the kernel configuration) but couldn't pinpoint anything in particular.
Fixes #1045, #1185, #1202.