Home
last modified time | relevance | path

Searched refs:hint (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/libbb/
Dxconnect.c188 struct addrinfo hint; variable
274 memset(&hint, 0 , sizeof(hint));
275 hint.ai_family = af;
278 hint.ai_socktype = SOCK_STREAM;
279 hint.ai_flags = ai_flags & ~DIE_ON_ERROR;
280 rc = getaddrinfo(host, NULL, &hint, &result);
/busybox-1.35.0/networking/
Dnslookup.c101 struct addrinfo hint; in print_host() local
103 memset(&hint, 0 , sizeof(hint)); in print_host()
107 hint.ai_socktype = SOCK_STREAM; in print_host()
109 rc = getaddrinfo(hostname, NULL /*service*/, &hint, &result); in print_host()