Home | History | Annotate | Download | only in libevent

Lines Matching full:aitop

2626         struct addrinfo ai, *aitop;
2633 if ((ai_result = getaddrinfo(address, NULL, &ai, &aitop)) != 0) {
2640 return (aitop);
2728 struct addrinfo *aitop = NULL;
2740 if ((ai_result = getaddrinfo(address, strport, &ai, &aitop)) != 0) {
2756 aitop = &ai[cur];
2757 ((struct sockaddr_in *) aitop->ai_addr)->sin_port = htons(port);
2760 return (aitop);
2767 struct addrinfo *aitop = NULL;
2773 aitop = make_addrinfo(address, port);
2775 if (aitop == NULL)
2778 fd = bind_socket_ai(aitop, reuse);
2781 freeaddrinfo(aitop);
2783 fake_freeaddrinfo(aitop);