hints             234 ext/net/addr.c         struct addrinfo hints, *res;
hints             236 ext/net/addr.c         memset(&hints, 0, sizeof(hints));
hints             237 ext/net/addr.c         hints.ai_family = AF_INET6;
hints             238 ext/net/addr.c         hints.ai_socktype = SOCK_STREAM;
hints             239 ext/net/addr.c         r = getaddrinfo(hname, NULL, &hints, &res);
hints             277 ext/net/gauche/net.h                               struct addrinfo *hints);
hints             513 ext/net/netdb.c                        struct addrinfo *hints)
hints             519 ext/net/netdb.c     r = getaddrinfo(nodename, servname, hints, &res0);
hints            1325 ext/net/netlib.c   ScmObj hints;
hints            1334 ext/net/netlib.c   hints = (hints_scm);
hints            1337 ext/net/netlib.c   if (!SCM_SYS_ADDRINFO_P(hints) && !SCM_FALSEP(hints))
hints            1338 ext/net/netlib.c     Scm_Error("<sys-addrinfo> or #f required, but got %S", hints);
hints            1339 ext/net/netlib.c   if (!SCM_FALSEP(hints)) {
hints            1341 ext/net/netlib.c     ai.ai_flags = SCM_SYS_ADDRINFO(hints)->flags;
hints            1342 ext/net/netlib.c     ai.ai_family = SCM_SYS_ADDRINFO(hints)->family;
hints            1343 ext/net/netlib.c     ai.ai_socktype = SCM_SYS_ADDRINFO(hints)->socktype;
hints            1344 ext/net/netlib.c     ai.ai_protocol = SCM_SYS_ADDRINFO(hints)->protocol;
hints            1347 ext/net/netlib.c                              SCM_FALSEP(hints) ? NULL : &ai));