Searched refs:socktype (Results 1 – 6 of 6) sorted by relevance
/openssl-master/crypto/bio/ |
A D | bio_sock2.c | 41 int BIO_socket(int domain, int socktype, int protocol, int options) in BIO_socket() argument 48 sock = socket(domain, socktype, protocol); in BIO_socket() 227 int socktype; in BIO_listen() local 228 socklen_t socktype_len = sizeof(socktype); in BIO_listen() 236 (void *)&socktype, &socktype_len) != 0 in BIO_listen() 237 || socktype_len != sizeof(socktype)) { in BIO_listen() 288 if (socktype != SOCK_DGRAM && listen(sock, MAX_LISTEN) == -1) { in BIO_listen()
|
A D | bio_addr.c | 576 static int addrinfo_wrap(int family, int socktype, in addrinfo_wrap() argument 587 (*bai)->bai_socktype = socktype; in addrinfo_wrap() 588 if (socktype == SOCK_STREAM) in addrinfo_wrap() 590 if (socktype == SOCK_DGRAM) in addrinfo_wrap() 625 int family, int socktype, BIO_ADDRINFO **res) in BIO_lookup() argument 627 return BIO_lookup_ex(host, service, lookup_type, family, socktype, 0, res); in BIO_lookup() 653 int family, int socktype, int protocol, BIO_ADDRINFO **res) in BIO_lookup_ex() argument 676 if (addrinfo_wrap(family, socktype, host, strlen(host), 0, res)) in BIO_lookup_ex() 695 hints.ai_socktype = socktype; in BIO_lookup_ex() 860 switch (socktype) { in BIO_lookup_ex() [all …]
|
/openssl-master/doc/man3/ |
A D | BIO_ADDRINFO.pod | 25 int family, int socktype, int protocol, BIO_ADDRINFO **res); 28 int family, int socktype, BIO_ADDRINFO **res); 47 be if B<host> is B<NULL>. B<family>, B<socktype> and B<protocol> are used to 50 AF_UNSPEC. B<socktype> can be SOCK_STREAM, SOCK_DGRAM or 0. Specifying 0
|
A D | BIO_connect.pod | 12 int BIO_socket(int domain, int socktype, int protocol, int options); 22 B<socktype> and B<protocol>. Socket B<options> are currently unused,
|
/openssl-master/include/openssl/ |
A D | bio.h.in | 732 int family, int socktype, BIO_ADDRINFO **res); 734 int lookup_type, int family, int socktype, int protocol, 767 int BIO_socket(int domain, int socktype, int protocol, int options);
|
/openssl-master/crypto/err/ |
A D | openssl.txt | 139 BIO_R_GETTING_SOCKTYPE:134:getting socktype
|
Completed in 16 milliseconds