Searched refs:ipver (Results 1 – 5 of 5) sorted by relevance
/third_party/curl/tests/ |
D | serverhelp.pm | 105 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/ |
D | connect.c | 349 unsigned char ipver = conn->ip_version; in bindlocal() local 362 conn->ip_version = ipver; in bindlocal()
|
D | urldata.h | 1732 unsigned char ipver; /* the CURL_IPRESOLVE_* defines in the public header member
|
D | url.c | 1184 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()
|
D | setopt.c | 2368 data->set.ipver = (unsigned char) arg; in Curl_vsetopt()
|