Home | History | Annotate | Download | only in tcpdump

Lines Matching full:hints

5023   struct addrinfo hints, *ai, *aitop;
5027 memset(&hints, 0, sizeof(hints));
5028 hints.ai_family = AF_UNSPEC;
5029 hints.ai_flags = passive ? AI_PASSIVE : 0;
5030 hints.ai_socktype = SOCK_STREAM;
5031 hints.ai_protocol = IPPROTO_TCP;
5032 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {