Home
last modified time | relevance | path

Searched refs:SOL_TCP (Results 1 – 17 of 17) sorted by relevance

/third_party/pulseaudio/src/pulsecore/
Dsocket-util.c155 #if defined(SOL_TCP) || defined(IPPROTO_TCP) in pa_make_tcp_socket_low_delay()
158 #if defined(SOL_TCP) in pa_make_tcp_socket_low_delay()
159 if (setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *) &on, sizeof(on)) < 0) in pa_make_tcp_socket_low_delay()
/third_party/openssl/crypto/bio/
Db_sock.c280 # if defined(TCP_NODELAY) && (defined(IPPROTO_TCP) || defined(SOL_TCP)) in BIO_set_tcp_ndelay()
283 # ifdef SOL_TCP in BIO_set_tcp_ndelay()
284 opt = SOL_TCP; in BIO_set_tcp_ndelay()
/third_party/libwebsockets/lib/plat/windows/
Dprivate-lib-plat-windows.h50 #define SOL_TCP IPPROTO_TCP macro
/third_party/musl/porting/liteos_a/kernel/include/netinet/
Dtcp.h96 #define SOL_TCP 6 macro
/third_party/musl/porting/liteos_m/kernel/include/netinet/
Dtcp.h96 #define SOL_TCP 6 macro
/third_party/musl/porting/uniproton/kernel/include/netinet/
Dtcp.h96 #define SOL_TCP 6 macro
/third_party/musl/include/netinet/
Dtcp.h96 #define SOL_TCP 6 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/netinet/
Dtcp.h96 #define SOL_TCP 6 macro
/third_party/musl/ndk_musl_include/netinet/
Dtcp.h96 #define SOL_TCP 6 macro
/third_party/grpc/src/core/lib/iomgr/
Dtcp_posix.cc63 #ifndef SOL_TCP
64 #define SOL_TCP IPPROTO_TCP macro
802 if (cmsg->cmsg_level == SOL_TCP && cmsg->cmsg_type == TCP_CM_INQ && in tcp_do_read()
1831 if (setsockopt(tcp->fd, SOL_TCP, TCP_INQ, &one, sizeof(one)) == 0) { in grpc_tcp_create()
/third_party/libwebsockets/lib/plat/unix/
Dunix-sockets.c182 if (!unix_skt && setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *)&optval, optlen) < 0) in lws_plat_set_socket_options()
/third_party/libwebsockets/lib/roles/http/server/
Dserver.c27 #if !defined(SOL_TCP) && defined(IPPROTO_TCP)
28 #define SOL_TCP IPPROTO_TCP macro
358 if (setsockopt(wsi->desc.sockfd, SOL_TCP, TCP_FASTOPEN, in _lws_vhost_init_server_af()
/third_party/nghttp2/src/
Dshrpx.cc141 # ifndef SOL_TCP
142 # define SOL_TCP 6 macro
830 if (setsockopt(fd, SOL_TCP, TCP_FASTOPEN, &val, in create_tcp_server_socket()
/third_party/grpc/src/proto/grpc/channelz/
Dchannelz.proto383 // SOL_TCP and TCP_INFO.
/third_party/python/Lib/test/
Dtest_socket.py1525 socket.getaddrinfo(HOST, None, 0, 0, socket.SOL_TCP)
1541 a = socket.getaddrinfo(HOST, None, 0, 0, socket.SOL_TCP)
1542 b = socket.getaddrinfo(HOST, None, proto=socket.SOL_TCP)
/third_party/python/Modules/
Dsocketmodule.c7676 #ifdef SOL_TCP
7677 PyModule_AddIntMacro(m, SOL_TCP);
/third_party/python/Lib/test/test_asyncio/
Dtest_base_events.py1420 socket.SOL_TCP, '', ('1.2.3.4', 80))])