Searched refs:ipver (Results 1 – 5 of 5) sorted by relevance
/third_party/curl/tests/ |
D | serverhelp.pm | 129 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/ |
D | cf-socket.c | 506 unsigned char ipver = conn->ip_version; in bindlocal() local 519 conn->ip_version = ipver; in bindlocal()
|
D | urldata.h | 1743 unsigned char ipver; /* the CURL_IPRESOLVE_* defines in the public header member
|
D | url.c | 1145 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()
|
D | setopt.c | 2438 data->set.ipver = (unsigned char) arg; in Curl_vsetopt()
|