| /freebsd-14-stable/crypto/openssh/ |
| HD | ssh-keyscan.c | 363 struct addrinfo hints, *ai, *aitop; in tcpconnect() local 371 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) { in tcpconnect() 375 for (ai = aitop; ai; ai = ai->ai_next) { in tcpconnect() 391 freeaddrinfo(aitop); in tcpconnect()
|
| HD | channels.c | 3797 struct addrinfo hints, *ai, *aitop; in channel_setup_fwd_listener_tcpip() local 3834 if ((r = getaddrinfo(addr, strport, &hints, &aitop)) != 0) { in channel_setup_fwd_listener_tcpip() 3847 for (ai = aitop; ai; ai = ai->ai_next) { in channel_setup_fwd_listener_tcpip() 3944 freeaddrinfo(aitop); in channel_setup_fwd_listener_tcpip() 4641 if (cctx->aitop) { in channel_connect_ctx_free() 4642 if (cctx->aitop->ai_family == AF_UNIX) in channel_connect_ctx_free() 4643 free(cctx->aitop); in channel_connect_ctx_free() 4645 freeaddrinfo(cctx->aitop); in channel_connect_ctx_free() 4688 cctx->aitop = ai; in connect_to_helper() 4694 if ((gaierr = getaddrinfo(name, strport, &hints, &cctx->aitop)) in connect_to_helper() [all …]
|
| HD | channels.h | 111 struct addrinfo *ai, *aitop; member
|
| HD | packet.c | 552 struct addrinfo hints, *ai, *aitop; in ssh_remote_hostname() local 607 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) { in ssh_remote_hostname() 613 for (ai = aitop; ai; ai = ai->ai_next) { in ssh_remote_hostname() 619 freeaddrinfo(aitop); in ssh_remote_hostname()
|
| HD | sshconnect.c | 448 ssh_connect_direct(struct ssh *ssh, const char *host, struct addrinfo *aitop, in ssh_connect_direct() argument 471 for (ai = aitop; ai; ai = ai->ai_next) { in ssh_connect_direct()
|
| HD | servconf.c | 849 struct addrinfo hints, *ai, *aitop; in add_one_listen_addr() local 881 if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0) in add_one_listen_addr() 885 for (ai = aitop; ai->ai_next; ai = ai->ai_next) in add_one_listen_addr() 888 options->listen_addrs[i].addrs = aitop; in add_one_listen_addr()
|
| /freebsd-14-stable/contrib/ntp/sntp/libevent/ |
| HD | http.c | 4462 struct evutil_addrinfo *aitop = NULL; in bind_socket() local 4468 aitop = make_addrinfo(address, port); in bind_socket() 4470 if (aitop == NULL) in bind_socket() 4473 fd = create_bind_socket_nonblock(aitop, reuse); in bind_socket() 4475 evutil_freeaddrinfo(aitop); in bind_socket()
|
| /freebsd-14-stable/contrib/libevent/ |
| HD | http.c | 4462 struct evutil_addrinfo *aitop = NULL; in bind_socket() local 4468 aitop = make_addrinfo(address, port); in bind_socket() 4470 if (aitop == NULL) in bind_socket() 4473 fd = create_bind_socket_nonblock(aitop, reuse); in bind_socket() 4475 evutil_freeaddrinfo(aitop); in bind_socket()
|
| /freebsd-14-stable/contrib/libevent/test/ |
| HD | regress_http.c | 182 struct evutil_addrinfo ai, *aitop; in http_connect() local 193 if (evutil_getaddrinfo(address, strport, &ai, &aitop) != 0) { in http_connect() 197 sa = aitop->ai_addr; in http_connect() 198 slen = aitop->ai_addrlen; in http_connect() 217 evutil_freeaddrinfo(aitop); in http_connect()
|
| /freebsd-14-stable/contrib/ntp/sntp/libevent/test/ |
| HD | regress_http.c | 182 struct evutil_addrinfo ai, *aitop; in http_connect() local 193 if (evutil_getaddrinfo(address, strport, &ai, &aitop) != 0) { in http_connect() 197 sa = aitop->ai_addr; in http_connect() 198 slen = aitop->ai_addrlen; in http_connect() 217 evutil_freeaddrinfo(aitop); in http_connect()
|