Searched refs:TCP_KEEPALIVE (Results 1 - 16 of 16) sorted by relevance
/third_party/libuv/src/win/ |
H A D | winsock.h | 41 #ifndef TCP_KEEPALIVE 42 # define TCP_KEEPALIVE 3 macro
|
H A D | tcp.c | 63 TCP_KEEPALIVE, in uv__tcp_keepalive()
|
/third_party/node/deps/uv/src/win/ |
H A D | winsock.h | 41 #ifndef TCP_KEEPALIVE 42 # define TCP_KEEPALIVE 3 macro
|
H A D | tcp.c | 71 TCP_KEEPALIVE, in uv__tcp_keepalive()
|
/third_party/libuv/src/unix/ |
H A D | tcp.c | 539 #elif defined(TCP_KEEPALIVE) in uv__tcp_keepalive() 540 /* Darwin/macOS uses TCP_KEEPALIVE in place of TCP_KEEPIDLE. */ in uv__tcp_keepalive() 541 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &delay, sizeof(delay))) in uv__tcp_keepalive()
|
/third_party/node/deps/uv/src/unix/ |
H A D | tcp.c | 413 #if defined(TCP_KEEPALIVE) && !defined(__sun) in uv__tcp_keepalive() 414 if (on && setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &delay, sizeof(delay))) in uv__tcp_keepalive()
|
/third_party/lwip/src/include/lwip/ |
H A D | sockets.h | 280 #define TCP_KEEPALIVE 0x02 /* send KEEPALIVE probes when idle for pcb->keep_idle milliseconds */ macro 281 #define TCP_KEEPIDLE 0x03 /* set pcb->keep_idle - Same as TCP_KEEPALIVE, but use seconds for get/setsockopt */
|
/third_party/rust/crates/nix/src/sys/socket/ |
H A D | sockopt.rs | 517 libc::TCP_KEEPALIVE,
|
/third_party/curl/lib/ |
H A D | cf-socket.c | 197 #elif defined(TCP_KEEPALIVE) in tcpkeepalive() 201 if(setsockopt(sockfd, IPPROTO_TCP, TCP_KEEPALIVE, in tcpkeepalive() 203 infof(data, "Failed to set TCP_KEEPALIVE on fd " in tcpkeepalive()
|
/third_party/rust/crates/libc/src/unix/hermit/ |
H A D | mod.rs | 933 pub const TCP_KEEPALIVE: ::c_int = 0x02; consts
|
/third_party/lwip/src/api/ |
H A D | sockets.c | 3169 case TCP_KEEPALIVE: 3171 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_getsockopt(%d, IPPROTO_TCP, TCP_KEEPALIVE) = %d\n", 3649 case TCP_KEEPALIVE: 3651 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_setsockopt(%d, IPPROTO_TCP, TCP_KEEPALIVE) -> %"U32_F"\n",
|
/third_party/python/Modules/ |
H A D | socketmodule.c | 8314 /* TCP_KEEPALIVE is OSX's TCP_KEEPIDLE equivalent */ 8315 #if defined(__APPLE__) && defined(TCP_KEEPALIVE) 8316 PyModule_AddIntMacro(m, TCP_KEEPALIVE);
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | mod.rs | 1165 pub const TCP_KEEPALIVE: ::c_int = 0x04; consts
|
/third_party/rust/crates/libc/src/unix/solarish/ |
H A D | mod.rs | 1791 pub const TCP_KEEPALIVE: ::c_int = 0x8; consts
|
/third_party/python/Lib/test/ |
H A D | test_socket.py | 6522 self.assertTrue(socket.TCP_KEEPALIVE)
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
H A D | mod.rs | 3653 pub const TCP_KEEPALIVE: ::c_int = 0x10; consts
|
Completed in 66 milliseconds