Searched refs:ai_socktype (Results 1 - 25 of 97) sorted by relevance

1234

/external/c-ares/
H A Dares_ipv6.h40 int ai_socktype; member in struct:addrinfo
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver_query.hpp68 hints_.ai_socktype = endpoint.protocol().type();
105 hints_.ai_socktype = protocol.type();
153 hints_.ai_socktype = endpoint.protocol().type();
204 hints_.ai_socktype = protocol.type();
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver_query.hpp68 hints_.ai_socktype = endpoint.protocol().type();
105 hints_.ai_socktype = protocol.type();
153 hints_.ai_socktype = endpoint.protocol().type();
204 hints_.ai_socktype = protocol.type();
/external/toybox/lib/
H A Dnet.c24 info.ai_socktype = socktype;
35 fd = (ai->ai_next ? socket : xsocket)(ai->ai_family, ai->ai_socktype,
/external/openssh/openbsd-compat/
H A Dfake-rfc2553.c143 if (hints->ai_socktype)
144 ai->ai_socktype = hints->ai_socktype;
146 ai->ai_socktype = SOCK_STREAM;
H A Dfake-rfc2553.h143 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
/external/boringssl/src/crypto/bio/
H A Dsocket_helper.c50 hint.ai_socktype = SOCK_STREAM;
69 *out_sock = socket(cur->ai_family, cur->ai_socktype, cur->ai_protocol);
/external/netperf/src/missing/
H A Dgetaddrinfo.c187 N_("servname not supported for ai_socktype"),
190 N_("ai_socktype not supported"),
365 if (hints->ai_socktype != SOCK_DGRAM
366 && hints->ai_socktype != SOCK_STREAM
367 && hints->ai_socktype != 0) {
384 if (hints->ai_socktype == SOCK_DGRAM)
386 else if (hints->ai_socktype == SOCK_STREAM)
388 else if (hints->ai_socktype == 0)
467 new_res->ai_socktype = hints->ai_socktype;
[all...]
H A Dgetaddrinfo.h213 int ai_socktype; member in struct:addrinfo
/external/curl/lib/
H A Dcurl_addrinfo.h54 int ai_socktype; member in struct:Curl_addrinfo
H A Dcurl_addrinfo.c159 ca->ai_socktype = ai->ai_socktype;
240 * int ai_socktype;
322 ai->ai_socktype = SOCK_STREAM;
501 ai->ai_socktype = SOCK_STREAM; /* assume reliable transport for HTTP */
H A Dhostip4.c145 hints.ai_socktype = SOCK_STREAM;
H A Dhostip6.c199 hints.ai_socktype = conn->socktype;
/external/curl/tests/server/
H A Dresolve.c136 hints.ai_socktype = SOCK_STREAM;
/external/libpcap/Win32/Include/
H A Daddrinfo.h43 #define EAI_SERVICE 9 /* servname not supported for ai_socktype */
44 #define EAI_SOCKTYPE 10 /* ai_socktype not supported */
72 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
H A Dip6_misc.h153 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
/external/tcpdump/missing/
H A Daddrinfo.h43 #define EAI_SERVICE 9 /* servname not supported for ai_socktype */
44 #define EAI_SOCKTYPE 10 /* ai_socktype not supported */
72 int ai_socktype; /* SOCK_xxx */ member in struct:addrinfo
/external/opencv/otherlibs/highgui/
H A Dcvcap_socket.cpp127 hints.ai_socktype = SOCK_STREAM;
218 int sockd = socket(pAddrInfo->ai_family, pAddrInfo->ai_socktype, pAddrInfo->ai_protocol);
/external/libpcap/Win32/Src/
H A Dgetaddrinfo.c208 "servname not supported for ai_socktype", /* EAI_SERVICE */
209 "ai_socktype not supported", /* EAI_SOCKTYPE */
327 pai->ai_socktype = ANY;
359 if (pai->ai_socktype != ANY && pai->ai_protocol != ANY) {
367 if (pai->ai_socktype == ex->e_socktype
409 if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex)))
416 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
417 pai->ai_socktype = ex->e_socktype;
465 if (!MATCH(pai->ai_socktype, ex->e_socktype,
476 if (pai->ai_socktype
[all...]
/external/libevent/
H A Devutil.c654 if (hints->ai_socktype == 0 && hints->ai_protocol == 0) {
659 tmp.ai_socktype = SOCK_STREAM; tmp.ai_protocol = IPPROTO_TCP;
663 tmp.ai_socktype = SOCK_DGRAM; tmp.ai_protocol = IPPROTO_UDP;
683 res->ai_socktype = hints->ai_socktype;
771 if (!hints->ai_protocol && hints->ai_socktype) {
772 if (hints->ai_socktype == SOCK_DGRAM)
774 else if (hints->ai_socktype == SOCK_STREAM)
779 if (!hints->ai_socktype && hints->ai_protocol) {
781 hints->ai_socktype
[all...]
/external/ipsec-tools/src/racoon/
H A Dkmpstat.c218 hint.ai_socktype = SOCK_STREAM;
/external/boringssl/src/tool/
H A Dtransport_common.cc87 hint.ai_socktype = SOCK_STREAM;
99 socket(result->ai_family, result->ai_socktype, result->ai_protocol);
/external/openssh/
H A Dcanohost.c92 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
115 hints.ai_socktype = SOCK_STREAM;
/external/toybox/toys/pending/
H A Dhost.c120 struct addrinfo ns_hints = { .ai_socktype = SOCK_DGRAM };
124 int s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
/external/netcat/
H A Dnetcat.c333 hints.ai_socktype = uflag ? SOCK_DGRAM : SOCK_STREAM;
362 proxyhints.ai_socktype = SOCK_STREAM;
600 if ((s = socket(res0->ai_family, res0->ai_socktype,
622 ahints.ai_socktype = uflag ? SOCK_DGRAM : SOCK_STREAM;
715 if ((s = socket(res0->ai_family, res0->ai_socktype,

Completed in 421 milliseconds

1234