Home | History | Annotate | Download | only in wps

Lines Matching refs:hints

314 	struct addrinfo hints;
351 os_memset(&hints, 0, sizeof(struct addrinfo));
352 hints.ai_family = AF_INET; /* IPv4 */
353 hints.ai_socktype = SOCK_STREAM;
358 hints.ai_flags = AI_NUMERICHOST;
361 hints.ai_flags = 0;
363 hints.ai_protocol = 0; /* Any protocol? */
365 &hints, &result);