[core] use TCP_CORK w/ TLS if cq length > 16k

use TCP_CORK (on Linux) with TLS if cq length > 16k
personal/stbuehler/tests-path
Glenn Strauss 2021-11-03 11:48:14 -04:00
parent b376934b67
commit 9cdb812c96
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ connection_write_chunkqueue (connection * const con, chunkqueue * const restrict
/* Linux: put a cork into socket as we want to combine write() calls
* but only if we really have multiple chunks including non-MEM_CHUNK
* (or if multiple chunks and TLS), and only if TCP socket */
if (NULL != c || con->is_ssl_sock) {
if (NULL != c || (max_bytes > 16384 && con->is_ssl_sock)) {
const int sa_family = sock_addr_get_family(&con->srv_socket->addr);
if (sa_family == AF_INET || sa_family == AF_INET6) {
corked = 1;