Home
last modified time | relevance | path

Searched refs:ipv6_ip (Results 1 – 8 of 8) sorted by relevance

/third_party/curl/lib/
Dhttp_proxy.c79 *pipv6_ip = cf->conn->bits.ipv6_ip; in Curl_http_proxy_get_destination()
92 bool ipv6_ip; in Curl_http_proxy_create_CONNECT() local
96 result = Curl_http_proxy_get_destination(cf, &hostname, &port, &ipv6_ip); in Curl_http_proxy_create_CONNECT()
100 authority = aprintf("%s%s%s:%d", ipv6_ip?"[":"", hostname, in Curl_http_proxy_create_CONNECT()
101 ipv6_ip?"]":"", port); in Curl_http_proxy_create_CONNECT()
Dcf-h1-proxy.c541 bool ipv6_ip; in CONNECT_host() local
546 result = Curl_http_proxy_get_destination(cf, &hostname, &port, &ipv6_ip); in CONNECT_host()
550 authority = aprintf("%s%s%s:%d", ipv6_ip?"[":"", hostname, ipv6_ip?"]":"", in CONNECT_host()
Dcf-h2-proxy.c87 bool ipv6_ip; in tunnel_stream_init() local
96 result = Curl_http_proxy_get_destination(cf, &hostname, &port, &ipv6_ip); in tunnel_stream_init()
101 aprintf("%s%s%s:%d", ipv6_ip?"[":"", hostname, ipv6_ip?"]":"", port); in tunnel_stream_init()
Dhttp.c2212 aptr->host = aprintf("Host: %s%s%s\r\n", conn->bits.ipv6_ip?"[":"", in Curl_http_host()
2213 host, conn->bits.ipv6_ip?"]":""); in Curl_http_host()
2215 aptr->host = aprintf("Host: %s%s%s:%d\r\n", conn->bits.ipv6_ip?"[":"", in Curl_http_host()
2216 host, conn->bits.ipv6_ip?"]":"", in Curl_http_host()
Dsocks.c913 if(conn->bits.ipv6_ip) { in do_SOCKS5()
Durl.c1849 conn->bits.ipv6_ip = TRUE;
2998 conn->bits.ipv6_ip ? "[" : "",
3000 conn->bits.ipv6_ip ? "]" : "");
Durldata.h513 BIT(ipv6_ip); /* we communicate with a remote site specified with pure IPv6
/third_party/curl/lib/vtls/
Dopenssl.c2154 if(conn->bits.ipv6_ip && in Curl_ossl_verifyhost()