Lines Matching defs:address

128  * Curl_printable_address() stores a printable version of the 1st address
273 return address that we can jump back to from inside a signal handler. This
279 /* lookup address, returns entry if found and not stale */
350 * has already been resolved and the address has already been stored in
400 * The addr argument should be the address of a pointer to the head node of a
466 * address, we call this function to store the information in the dns
505 dns->addr = addr; /* this is the address(es) */
626 /* an IPv6 address was requested but we can't get/use one */
639 * (or IPv6 if supported) address.
699 failf(data, "Not resolving .onion address (RFC 7686)");
724 /* The entry was not in the cache. Resolve it to IP address */
756 /* First check if this is an IPv4 address string */
758 /* This is a dotted IP address 123.123.123.123-style */
766 /* check if this is an IPv6 address string */
768 /* This is an IPv6 address literal */
778 /* First check if this is an IPv4 address string */
780 /* This is a dotted IP address 123.123.123.123-style */
785 /* check if this is an IPv6 address string */
787 /* This is an IPv6 address literal */
1151 char address[64];
1195 /* allow IP(v6) address within [brackets] */
1207 if(alen >= sizeof(address))
1210 memcpy(address, addr_begin, alen);
1211 address[alen] = '\0';
1214 if(strchr(address, ':')) {
1215 infof(data, "Ignoring resolve address '%s', missing IPv6 support.",
1216 address);
1221 ai = Curl_str2addr(address, port);
1223 infof(data, "Resolve address '%s' found illegal", address);