Home
last modified time | relevance | path

Searched refs:conn_to_host (Results 1 – 10 of 10) sorted by relevance

/third_party/curl/lib/
Durl.c711 Curl_free_idnconverted_hostname(&conn->conn_to_host); in conn_free()
732 Curl_safefree(conn->conn_to_host.rawalloc); /* host name buffer */ in conn_free()
1208 if(needle->bits.conn_to_host != check->bits.conn_to_host) in ConnectionExists()
1344 (!needle->bits.conn_to_host || strcasecompare( in ConnectionExists()
1345 needle->conn_to_host.name, check->conn_to_host.name)) && in ConnectionExists()
2946 const char *conn_to_host, argument
2951 const char *ptr = conn_to_host;
3016 struct curl_slist *conn_to_host) argument
3022 while(conn_to_host && !host && port == -1) {
3023 result = parse_connect_to_string(data, conn, conn_to_host->data,
[all …]
Durldata.h325 char *conn_to_host; /* host name for the connection (may be NULL) */ member
502 BIT(conn_to_host); /* if set, this connection has a "connect to host"
912 struct hostname conn_to_host; /* the host to connect to. valid only if member
1100 (c)->bits.conn_to_host ? (c)->conn_to_host.dispname : \
1104 (c)->bits.conn_to_host ? (c)->conn_to_host.dispname : \
Dhttp_proxy.c62 if(cf->conn->bits.conn_to_host) in Curl_http_proxy_get_destination()
63 *phostname = cf->conn->conn_to_host.name; in Curl_http_proxy_get_destination()
Dconncache.c138 if(conn->bits.conn_to_host) in hashkey()
139 hostname = conn->conn_to_host.name; in hashkey()
Dsocks.c1136 conn->bits.conn_to_host ? in socks_proxy_cf_connect()
1137 conn->conn_to_host.name : in socks_proxy_cf_connect()
Dconnect.c713 if(conn->bits.conn_to_host) in is_connected()
714 hostname = conn->conn_to_host.name; in is_connected()
Dmulti.c790 conn->bits.conn_to_host ? conn->conn_to_host.dispname : in multi_done()
2014 if(conn->bits.conn_to_host)
2015 hostname = conn->conn_to_host.name;
Dc-hyper.c1116 conn->conn_to_host.name, conn->conn_to_port); in Curl_http()
Dhttp.c3299 conn->conn_to_host.name, conn->conn_to_port); in Curl_http()
/third_party/curl/lib/vtls/
Dvtls.c436 ((!cf->conn->bits.conn_to_host && !check->conn_to_host) || in Curl_ssl_getsessionid()
437 (cf->conn->bits.conn_to_host && check->conn_to_host && in Curl_ssl_getsessionid()
438 strcasecompare(cf->conn->conn_to_host.name, check->conn_to_host))) && in Curl_ssl_getsessionid()
480 Curl_safefree(session->conn_to_host); in Curl_ssl_kill_session()
539 if(cf->conn->bits.conn_to_host) { in Curl_ssl_addsessionid()
540 clone_conn_to_host = strdup(cf->conn->conn_to_host.name); in Curl_ssl_addsessionid()
585 free(store->conn_to_host); in Curl_ssl_addsessionid()
587 store->conn_to_host = clone_conn_to_host; /* clone connect to host name */ in Curl_ssl_addsessionid()