Searched refs:hints (Results 1 – 1 of 1) sorted by relevance
715 struct addrinfo hints; in BIO_lookup_ex() local717 memset(&hints, 0, sizeof(hints)); in BIO_lookup_ex()719 hints.ai_family = family; in BIO_lookup_ex()720 hints.ai_socktype = socktype; in BIO_lookup_ex()721 hints.ai_protocol = protocol; in BIO_lookup_ex()726 hints.ai_flags |= AI_ADDRCONFIG; in BIO_lookup_ex()730 hints.ai_flags |= AI_PASSIVE; in BIO_lookup_ex()738 switch ((gai_ret = getaddrinfo(host, service, &hints, res))) { in BIO_lookup_ex()757 if (hints.ai_flags & AI_ADDRCONFIG) { in BIO_lookup_ex()758 hints.ai_flags &= ~AI_ADDRCONFIG; in BIO_lookup_ex()[all …]
Completed in 5 milliseconds