Searched refs:SIO_KEEPALIVE_VALS (Results 1 - 4 of 4) sorted by relevance
/third_party/curl/lib/ |
H A D | cf-socket.c | 147 #if defined(USE_WINSOCK) && !defined(SIO_KEEPALIVE_VALS) 148 #define SIO_KEEPALIVE_VALS _WSAIOW(IOC_VENDOR,4) macro 171 #if defined(SIO_KEEPALIVE_VALS) in tcpkeepalive() 181 if(WSAIoctl(sockfd, SIO_KEEPALIVE_VALS, (LPVOID) &vals, sizeof(vals), in tcpkeepalive() 183 infof(data, "Failed to set SIO_KEEPALIVE_VALS on fd " in tcpkeepalive()
|
/third_party/libwebsockets/lib/plat/windows/ |
H A D | windows-sockets.c | 121 if (WSAIoctl(fd, SIO_KEEPALIVE_VALS, &alive, sizeof(alive), in lws_plat_set_socket_options() 125 lwsl_err("WSAIoctl SIO_KEEPALIVE_VALS 1 %lu %lu failed with error %d\n", alive.keepalivetime, alive.keepaliveinterval, error); in lws_plat_set_socket_options()
|
/third_party/python/Modules/ |
H A D | socketmodule.c | 4890 case SIO_KEEPALIVE_VALS: { 4921 SIO_KEEPALIVE_VALS: 'option' is a tuple of (onoff, timeout, interval).\n\ 8524 DWORD codes[] = {SIO_RCVALL, SIO_KEEPALIVE_VALS, 8529 const char *names[] = {"SIO_RCVALL", "SIO_KEEPALIVE_VALS",
|
/third_party/python/Lib/test/ |
H A D | test_socket.py | 1492 self.assertTrue(hasattr(socket, 'SIO_KEEPALIVE_VALS')) 1496 s.ioctl(socket.SIO_KEEPALIVE_VALS, (1, 100, 100))
|
Completed in 23 milliseconds