Home | History | Annotate | Download | only in libvncclient

Lines Matching refs:hints

364   struct addrinfo hints, *res, *ressave;
372 memset(&hints, 0, sizeof(struct addrinfo));
373 hints.ai_family = AF_UNSPEC;
374 hints.ai_socktype = SOCK_STREAM;
375 if ((n = getaddrinfo(hostname, port_s, &hints, &res)))
543 struct addrinfo hints, *servinfo, *p;
548 memset(&hints, 0, sizeof(hints));
549 hints.ai_family = AF_UNSPEC;
550 hints.ai_socktype = SOCK_STREAM;
551 hints.ai_flags = AI_PASSIVE; /* fill in wildcard address if address == NULL */
556 if ((rv = getaddrinfo(address, port_str, &hints, &servinfo)) != 0) {