Lines Matching defs:hints
156 struct addrinfo hints;
178 memset(&hints, 0, sizeof(hints));
179 hints.ai_flags = AI_PASSIVE;
180 hints.ai_family = PF;
181 hints.ai_socktype = SOCK_DGRAM;
183 err = getaddrinfo( NULL, "0", &hints, &res);
634 struct addrinfo hints;
670 memset(&hints, 0, sizeof(hints));
671 hints.ai_family = PF;
672 hints.ai_socktype = SOCK_DGRAM;
674 err = getaddrinfo( conn->hostname, port_s, &hints, &res);