Home
last modified time | relevance | path

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

/freebsd/usr.bin/getent/
H A Dgetent.c282 struct hostent *he4, *he6; in hosts() local
290 he4 = he6 = NULL; in hosts()
298 he6 = gethostbyaddr(addr, IN6ADDRSZ, AF_INET6); in hosts()
299 if (he6 != NULL) in hosts()
300 hostsprint(he6); in hosts()
307 he6 = gethostbyname2(argv[i], AF_INET6); in hosts()
308 if (he6 != NULL) in hosts()
309 hostsprint(he6); in hosts()
314 if ( he4 == NULL && he6 == NULL ) { in hosts()