Lines Matching defs:hints
439 struct addrinfo hints;
443 crMemset(&hints, 0, sizeof(hints));
444 hints.ai_flags = AI_PASSIVE;
445 hints.ai_family = PF;
446 hints.ai_socktype = SOCK_STREAM;
448 err = getaddrinfo( NULL, port_s, &hints, &res );
1226 struct addrinfo hints;
1230 crMemset(&hints, 0, sizeof(hints));
1231 hints.ai_family = PF;
1232 hints.ai_socktype = SOCK_STREAM;
1234 err = getaddrinfo( conn->hostname, port_s, &hints, &res);