Searched refs:ipver (Results 1 – 6 of 6) 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 | socks.c | 842 if(data->set.ipver != CURL_IPRESOLVE_WHATEVER) { in do_SOCKS5() 843 int wanted_family = data->set.ipver == CURL_IPRESOLVE_V4 ? in do_SOCKS5()
|
D | cf-socket.c | 512 unsigned char ipver = conn->ip_version; in bindlocal() local 525 conn->ip_version = ipver; in bindlocal()
|
D | url.c | 1004 if(data->set.ipver != CURL_IPRESOLVE_WHATEVER in ConnectionExists() 1005 && data->set.ipver != check->ip_version) { in ConnectionExists() 1405 conn->ip_version = data->set.ipver; in allocate_conn()
|
D | urldata.h | 1755 unsigned char ipver; /* the CURL_IPRESOLVE_* defines in the public header member
|
D | setopt.c | 2410 data->set.ipver = (unsigned char) arg; in Curl_vsetopt()
|