Home
last modified time | relevance | path

Searched refs:TCP_KEEPALIVE (Results 1 - 16 of 16) sorted by relevance

/third_party/libuv/src/win/
H A Dwinsock.h41 #ifndef TCP_KEEPALIVE
42 # define TCP_KEEPALIVE 3 macro
H A Dtcp.c63 TCP_KEEPALIVE, in uv__tcp_keepalive()
/third_party/node/deps/uv/src/win/
H A Dwinsock.h41 #ifndef TCP_KEEPALIVE
42 # define TCP_KEEPALIVE 3 macro
H A Dtcp.c71 TCP_KEEPALIVE, in uv__tcp_keepalive()
/third_party/libuv/src/unix/
H A Dtcp.c539 #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 Dtcp.c413 #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 Dsockets.h280 #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 Dsockopt.rs517 libc::TCP_KEEPALIVE,
/third_party/curl/lib/
H A Dcf-socket.c197 #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 Dmod.rs933 pub const TCP_KEEPALIVE: ::c_int = 0x02; consts
/third_party/lwip/src/api/
H A Dsockets.c3169 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 Dsocketmodule.c8314 /* 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 Dmod.rs1165 pub const TCP_KEEPALIVE: ::c_int = 0x04; consts
/third_party/rust/crates/libc/src/unix/solarish/
H A Dmod.rs1791 pub const TCP_KEEPALIVE: ::c_int = 0x8; consts
/third_party/python/Lib/test/
H A Dtest_socket.py6522 self.assertTrue(socket.TCP_KEEPALIVE)
/third_party/rust/crates/libc/src/unix/bsd/apple/
H A Dmod.rs3653 pub const TCP_KEEPALIVE: ::c_int = 0x10; consts

Completed in 66 milliseconds