Lines Matching full:hints
53 struct addrinfo hints, *ai, *aitop;
92 memset(&hints, 0, sizeof(hints));
93 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
94 hints.ai_flags = AI_NUMERICHOST;
95 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
118 memset(&hints, 0, sizeof(hints));
119 hints.ai_family = from.ss_family;
120 hints.ai_socktype = SOCK_STREAM;
121 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {