Merge 1ad4e1a74be762502fed461e7ad257ecfb57fb21 into 34f7fa22022bed9e0e390ed3580a1c83ac4a2834

This commit is contained in:
Stephan Guilloux 2024-12-31 05:38:15 +08:00 committed by GitHub
commit dbb2d3256a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -246,5 +246,33 @@ zmq::fd_t zmq::tcp_listener_t::accept ()
if (options.priority != 0)
set_socket_priority (sock, options.priority);
// OK. Let's talk about this lazy implementation.
//
// On Linux, after ::accept(), TCP_KEEPALIVE is not set by default.
// Moreover, there is no way for an application to retreive this socket
// and then, no way to close() or use setsockopt() on it.
// So, the only possibility to avoid socket leakage is TCP_KEEPALIVE.
//
// Regarding the values, the default TCP ones are far too huge (> 2h).
// The values below seem reasonnable for a ZYRE application :
// 120 + 10 * 10 = 220s (3mn 40s)
//
// Note:
// A ZYRE client application will reset its side after about 30s, so
// no worry about such applications.
// What about other applications ?
//
int rc = tune_tcp_keepalives (sock, 1, 10, 120, 10);
if (rc != 0) {
#ifdef ZMQ_HAVE_WINDOWS
const int rc = closesocket (sock);
wsa_assert (rc != SOCKET_ERROR);
#else
rc = ::close (sock);
errno_assert (rc == 0);
#endif
return retired_fd;
}
return sock;
}