Home
last modified time | relevance | path

Searched refs:TCP_KEEPALIVE (Results 1 – 11 of 11) sorted by relevance

/third_party/libuv/src/win/
Dwinsock.h41 #ifndef TCP_KEEPALIVE
42 # define TCP_KEEPALIVE 3 macro
Dtcp.c71 TCP_KEEPALIVE, in uv__tcp_keepalive()
/third_party/libuv/src/unix/
Dtcp.c404 #if defined(TCP_KEEPALIVE) && !defined(__sun) in uv__tcp_keepalive()
405 if (on && setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &delay, sizeof(delay))) in uv__tcp_keepalive()
/third_party/lwip/src/include/lwip/
Dsockets.h280 #define TCP_KEEPALIVE 0x02 /* send KEEPALIVE probes when idle for pcb->keep_idle milliseconds */ macro
/third_party/curl/lib/
Dconnect.c149 #ifdef TCP_KEEPALIVE in tcpkeepalive()
153 if(setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPALIVE, in tcpkeepalive()
/third_party/python/Misc/NEWS.d/
D3.10.0rc1.rst609 Add socket.TCP_KEEPALIVE support for macOS. Patch by Shane Harvey.
/third_party/lwip/src/api/
Dsockets.c3165 case TCP_KEEPALIVE: in lwip_getsockopt_impl()
3642 case TCP_KEEPALIVE: in lwip_setsockopt_impl()
/third_party/python/Modules/
Dsocketmodule.c8160 #if defined(__APPLE__) && defined(TCP_KEEPALIVE)
8161 PyModule_AddIntMacro(m, TCP_KEEPALIVE);
/third_party/python/Doc/library/
Dsocket.rst388 Added ``TCP_KEEPALIVE``. On MacOS this constant can be used in the same
/third_party/python/Lib/test/
Dtest_socket.py6415 self.assertTrue(socket.TCP_KEEPALIVE)
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md1119 * sunos: don't set TCP_KEEPALIVE (Ben Noordhuis)