Home
last modified time | relevance | path

Searched refs:protocol (Results 1 – 7 of 7) sorted by relevance

/libevent-2.1.12/
H A Devutil.c202 evutil_socketpair(int family, int type, int protocol, evutil_socket_t fd[2]) in evutil_socketpair() argument
205 return socketpair(family, type, protocol, fd); in evutil_socketpair()
207 return evutil_ersatz_socketpair_(family, type, protocol, fd); in evutil_socketpair()
212 evutil_ersatz_socketpair_(int family, int type, int protocol, in evutil_ersatz_socketpair_() argument
240 if (protocol || family_test) { in evutil_ersatz_socketpair_()
906 evutil_parse_servname(const char *servname, const char *protocol, in evutil_parse_servname() argument
914 struct servent *ent = getservbyname(servname, protocol); in evutil_parse_servname()
2595 evutil_socket_(int domain, int type, int protocol) in evutil_socket_() argument
2599 r = socket(domain, type, protocol); in evutil_socket_()
2606 r = socket(domain, type & SOCKET_TYPE_MASK, protocol); in evutil_socket_()
H A Dutil-internal.h504 evutil_socket_t evutil_socket_(int domain, int type, int protocol);
H A Dhttp.c1684 char *protocol; in evhttp_parse_response_line() local
1688 protocol = strsep(&line, " "); in evhttp_parse_response_line()
1695 if (evhttp_parse_http_version(protocol, req) < 0) in evhttp_parse_response_line()
H A DChangeLog-2.0785 o Fix getaddrinfo with protocol unset on Solaris 9. Found by Dagobert Michelsen (2cf2a28)
/libevent-2.1.12/test/
H A Dregress.h115 int socktype, int protocol, int line);
H A Dregress_util.c861 ai_find_by_protocol(struct evutil_addrinfo *ai, int protocol) in ai_find_by_protocol() argument
864 if (ai->ai_protocol == protocol) in ai_find_by_protocol()
874 int socktype, int protocol, int line) in test_ai_eq_() argument
883 if (protocol > 0) in test_ai_eq_()
884 tt_int_op(ai->ai_protocol, ==, protocol); in test_ai_eq_()
/libevent-2.1.12/include/event2/
H A Dutil.h390 int evutil_socketpair(int d, int type, int protocol, evutil_socket_t sv[2]);