Home | History | Annotate | Download | only in src

Lines Matching full:hints

1839   struct addrinfo hints;
1840 memset(&hints, 0, sizeof(addrinfo));
1841 hints.ai_family = AF_INET;
1842 hints.ai_socktype = SOCK_STREAM;
1843 hints.ai_protocol = IPPROTO_TCP;
1844 int status = getaddrinfo(host, port, &hints, &result);