• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/

Lines Matching refs:addresses

71 /* Lists of IP addresses that result from running DNS queries.  See
76 ip_address *addresses; /* pointer to the string of addresses */
78 int faulty; /* number of addresses known not to work. */
80 one of the addresses in the list,
102 return al->addresses + pos;
116 ip_address *cur = al->addresses + i;
126 ip_address *cur = al->addresses + i;
148 "faulty" attempt is always preceded with all-faulty addresses,
154 /* All addresses have been proven faulty. Since there's not much
180 /* Create an address_list from the addresses in the given struct
199 al->addresses = xnew_array (ip_address, cnt);
203 ip = al->addresses;
224 assert (ip - al->addresses == cnt);
230 /* Compare two IP addresses by family, giving preference to the IPv4
257 addresses. This kind of vector is returned by gethostbyname. */
270 al->addresses = xnew_array (ip_address, count);
276 ip_address *ip = &al->addresses[i];
289 xfree (al->addresses);
412 IPv4 addresses, and the colon-separated list of hex words (with all
413 zeros omitted, etc.) for IPv6 addresses. */
579 /* Mapping between known hosts and to lists of their addresses. */
583 /* Return the host's resolved addresses from the cache, if
619 debug_logprintf (" %s", print_address (al->addresses + i));
642 /* Look up HOST in DNS and return a list of IP addresses.
645 the second time, the addresses are returned without DNS lookup.
649 The order of the returned addresses is affected by the setting of
650 opt.prefer_family: if it is set to prefer_ipv4, IPv4 addresses are
653 relative order of addresses with the same family is left
658 LH_BIND - resolve addresses for use with bind, which under
677 dotted-decimal IPv4 addresses. */
762 it's unneeded since we sort the addresses anyway. */
793 _("failed: No IPv4/IPv6 addresses for host.\n"));
797 /* Reorder addresses so that IPv4 ones (or IPv6 ones, as per
799 the addresses with the same family is undisturbed. */
801 stable_sort (al->addresses, al->count, sizeof (ip_address),
825 /* Print the addresses determined by DNS lookup, but no more than
833 logputs (LOG_VERBOSE, print_address (al->addresses + i));