Home
last modified time | relevance | path

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

/third_party/curl/tests/
Dserverhelp.pm129 my ($proto, $ipver, $idnum) = @_;
135 $ipver = (not $ipver) ? 'ipv4' : lc($ipver);
136 die "unsupported IP version: '$ipver'" unless($ipver &&
137 ($ipver =~ /^(4|6|ipv4|ipv6|-ipv4|-ipv6|unix)$/));
138 $ipver = ($ipver =~ /6$/) ? '-IPv6' : (($ipver =~ /unix$/) ? '-unix' : '');
145 return "${proto}${idnum}${ipver}";
153 my ($proto, $ipver, $idnum) = @_;
154 return lc(servername_str($proto, $ipver, $idnum));
162 my ($proto, $ipver, $idnum) = @_;
163 my $string = lc(servername_str($proto, $ipver, $idnum));
[all …]
/third_party/curl/lib/
Dcf-socket.c506 unsigned char ipver = conn->ip_version; in bindlocal() local
519 conn->ip_version = ipver; in bindlocal()
Durldata.h1743 unsigned char ipver; /* the CURL_IPRESOLVE_* defines in the public header member
Durl.c1145 if(data->set.ipver != CURL_IPRESOLVE_WHATEVER in ConnectionExists()
1146 && data->set.ipver != check->ip_version) { in ConnectionExists()
1575 conn->ip_version = data->set.ipver; in allocate_conn()
Dsetopt.c2438 data->set.ipver = (unsigned char) arg; in Curl_vsetopt()