Lines Matching defs:address
129 /* ignore elements with unsupported address family, */
140 /* ignore elements without required address info */
144 /* ignore elements with bogus address size */
285 /* allocate memory to hold the struct, the address and the name */
291 /* put the address after the struct */
293 /* then put the name after the address */
307 /* we return all names as STREAM, so when using this address for TFTP
362 * This function takes an internet address, in binary form, as input parameter
363 * along with its address family and the string version of the address, and it
365 * given address/host
441 * Given an IPv4 or IPv6 dotted string address, this converts it to a proper
444 struct Curl_addrinfo *Curl_str2addr(char *address, int port)
447 if(Curl_inet_pton(AF_INET, address, &in) > 0)
448 /* This is a dotted IP address 123.123.123.123-style */
449 return Curl_ip2addr(AF_INET, &in, address, port);
453 if(Curl_inet_pton(AF_INET6, address, &in6) > 0)
454 /* This is a dotted IPv6 address ::1-style */
455 return Curl_ip2addr(AF_INET6, &in6, address, port);