Searched refs:hints (Results 1 – 3 of 3) sorted by relevance
/lk-master/tools/ |
A D | network.c | 21 struct addrinfo hints; in lookup_hostname() local 22 memset(&hints, 0, sizeof(hints)); in lookup_hostname() 23 hints.ai_family = AF_INET; in lookup_hostname() 24 hints.ai_socktype = SOCK_STREAM; in lookup_hostname() 26 err = getaddrinfo(hostname, NULL, &hints, &info); in lookup_hostname()
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | netdb.h | 106 const struct addrinfo *hints, 114 #define getaddrinfo(nodname, servname, hints, res) \ argument 115 lwip_getaddrinfo(nodname, servname, hints, res)
|
/lk-master/external/lib/lwip/api/ |
A D | netdb.c | 268 const struct addrinfo *hints, struct addrinfo **res) in lwip_getaddrinfo() argument 329 if (hints != NULL) { in lwip_getaddrinfo() 331 ai->ai_socktype = hints->ai_socktype; in lwip_getaddrinfo() 332 ai->ai_protocol = hints->ai_protocol; in lwip_getaddrinfo()
|
Completed in 5 milliseconds