Home | History | Annotate | Download | only in wps

Lines Matching refs:hints

312 	struct addrinfo hints;
349 os_memset(&hints, 0, sizeof(struct addrinfo));
350 hints.ai_family = AF_INET; /* IPv4 */
351 hints.ai_socktype = SOCK_STREAM;
356 hints.ai_flags = AI_NUMERICHOST;
359 hints.ai_flags = 0;
361 hints.ai_protocol = 0; /* Any protocol? */
363 &hints, &result);