Lines Matching full:hints
33 .Fa "const struct addrinfo *hints" "struct addrinfo **res"
72 .Fa hints
90 This structure can be used to provide hints concerning the type of socket
93 .Fa hints :
127 .Fa hints
257 .Fa hints
261 .Fa hints
386 struct addrinfo hints, *res, *res0;
391 memset(&hints, 0, sizeof(hints));
392 hints.ai_family = AF_UNSPEC;
393 hints.ai_socktype = SOCK_STREAM;
394 error = getaddrinfo("www.kame.net", "http", &hints, &res0);
428 struct addrinfo hints, *res, *res0;
434 memset(&hints, 0, sizeof(hints));
435 hints.ai_family = AF_UNSPEC;
436 hints.ai_socktype = SOCK_STREAM;
437 hints.ai_flags = AI_PASSIVE;
438 error = getaddrinfo(NULL, "http", &hints, &res0);