Home
last modified time | relevance | path

Searched refs:ipver (Results 1 – 5 of 5) sorted by relevance

/third_party/curl/tests/
Dserverhelp.pm105 my ($proto, $ipver, $idnum) = @_;
111 $ipver = (not $ipver) ? 'ipv4' : lc($ipver);
112 die "unsupported IP version: '$ipver'" unless($ipver &&
113 ($ipver =~ /^(4|6|ipv4|ipv6|-ipv4|-ipv6|unix)$/));
114 $ipver = ($ipver =~ /6$/) ? '-IPv6' : (($ipver =~ /unix$/) ? '-unix' : '');
121 return "${proto}${idnum}${ipver}";
129 my ($proto, $ipver, $idnum) = @_;
130 return lc(servername_str($proto, $ipver, $idnum));
138 my ($proto, $ipver, $idnum) = @_;
139 my $string = lc(servername_str($proto, $ipver, $idnum));
[all …]
/third_party/curl/lib/
Dconnect.c349 unsigned char ipver = conn->ip_version; in bindlocal() local
362 conn->ip_version = ipver; in bindlocal()
Durldata.h1732 unsigned char ipver; /* the CURL_IPRESOLVE_* defines in the public header member
Durl.c1184 if(data->set.ipver != CURL_IPRESOLVE_WHATEVER in ConnectionExists()
1185 && data->set.ipver != check->ip_version) { in ConnectionExists()
1780 conn->ip_version = data->set.ipver; in allocate_conn()
Dsetopt.c2368 data->set.ipver = (unsigned char) arg; in Curl_vsetopt()