Home
last modified time | relevance | path

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

/external/curl/lib/
Durl.c713 free_idnconverted_hostname(&conn->conn_to_host); in conn_free()
737 Curl_safefree(conn->conn_to_host.rawalloc); /* host name buffer */ in conn_free()
1111 (needle->bits.conn_to_host ? needle->conn_to_host.name : in ConnectionExists()
1253 if(needle->bits.conn_to_host != check->bits.conn_to_host) in ConnectionExists()
1339 (!needle->bits.conn_to_host || strcasecompare( in ConnectionExists()
1340 needle->conn_to_host.name, check->conn_to_host.name)) && in ConnectionExists()
1521 conn->bits.conn_to_host ? in Curl_connected_proxy()
1522 conn->conn_to_host.name : in Curl_connected_proxy()
1566 conn->bits.conn_to_host ? conn->conn_to_host.dispname : in Curl_verboseconnect()
3274 const char *conn_to_host, in parse_connect_to_string() argument
[all …]
Dconncache.c170 else if(conn->bits.conn_to_host) in hashkey()
171 hostname = conn->conn_to_host.name; in hashkey()
Dhttp_proxy.c112 if(conn->bits.conn_to_host) in Curl_proxy_connect()
113 hostname = conn->conn_to_host.name; in Curl_proxy_connect()
Durldata.h260 char *conn_to_host; /* host name for the connection (may be NULL) */ member
404 bit conn_to_host:1; /* if set, this connection has a "connect to host" member
833 struct hostname conn_to_host; /* the host to connect to. valid only if member
Dmulti.c642 conn->bits.conn_to_host ? conn->conn_to_host.dispname : in multi_done()
1434 else if(conn->bits.conn_to_host) in multi_runsingle()
1435 hostname = conn->conn_to_host.name; in multi_runsingle()
Dconnect.c881 else if(conn->bits.conn_to_host) in Curl_is_connected()
882 hostname = conn->conn_to_host.name; in Curl_is_connected()
/external/curl/lib/vtls/
Dvtls.c342 ((!conn->bits.conn_to_host && !check->conn_to_host) || in Curl_ssl_getsessionid()
343 (conn->bits.conn_to_host && check->conn_to_host && in Curl_ssl_getsessionid()
344 strcasecompare(conn->conn_to_host.name, check->conn_to_host))) && in Curl_ssl_getsessionid()
382 Curl_safefree(session->conn_to_host); in Curl_ssl_kill_session()
434 if(conn->bits.conn_to_host) { in Curl_ssl_addsessionid()
435 clone_conn_to_host = strdup(conn->conn_to_host.name); in Curl_ssl_addsessionid()
480 free(store->conn_to_host); in Curl_ssl_addsessionid()
482 store->conn_to_host = clone_conn_to_host; /* clone connect to host name */ in Curl_ssl_addsessionid()