Home
last modified time | relevance | path

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

/external/curl/lib/
Durl.c735 Curl_free_idnconverted_hostname(&conn->conn_to_host); in conn_free()
753 Curl_safefree(conn->conn_to_host.rawalloc); /* host name buffer */ in conn_free()
1209 if(needle->bits.conn_to_host != check->bits.conn_to_host) in ConnectionExists()
1301 (!needle->bits.conn_to_host || strcasecompare( in ConnectionExists()
1302 needle->conn_to_host.name, check->conn_to_host.name)) && in ConnectionExists()
1470 conn->bits.conn_to_host ? conn->conn_to_host.dispname : in Curl_verboseconnect()
2989 const char *conn_to_host, argument
2994 const char *ptr = conn_to_host;
3059 struct curl_slist *conn_to_host) argument
3065 while(conn_to_host && !host && port == -1) {
[all …]
Dconncache.c153 if(conn->bits.conn_to_host) in hashkey()
154 hostname = conn->conn_to_host.name; in hashkey()
Dhttp_proxy.c114 if(conn->bits.conn_to_host) in Curl_proxy_connect()
115 hostname = conn->conn_to_host.name; in Curl_proxy_connect()
Dconnect.c753 conn->bits.conn_to_host ? in connect_SOCKS()
754 conn->conn_to_host.name : in connect_SOCKS()
992 if(conn->bits.conn_to_host) in Curl_is_connected()
993 hostname = conn->conn_to_host.name; in Curl_is_connected()
Durldata.h273 char *conn_to_host; /* host name for the connection (may be NULL) */ member
441 BIT(conn_to_host); /* if set, this connection has a "connect to host"
916 struct hostname conn_to_host; /* the host to connect to. valid only if member
Dmulti.c677 conn->bits.conn_to_host ? conn->conn_to_host.dispname : in multi_done()
1876 if(conn->bits.conn_to_host)
1877 hostname = conn->conn_to_host.name;
Dhttp.c2524 conn->conn_to_host.name, conn->conn_to_port); in Curl_http()
/external/curl/lib/vtls/
Dvtls.c409 ((!conn->bits.conn_to_host && !check->conn_to_host) || in Curl_ssl_getsessionid()
410 (conn->bits.conn_to_host && check->conn_to_host && in Curl_ssl_getsessionid()
411 strcasecompare(conn->conn_to_host.name, check->conn_to_host))) && in Curl_ssl_getsessionid()
449 Curl_safefree(session->conn_to_host); in Curl_ssl_kill_session()
510 if(conn->bits.conn_to_host) { in Curl_ssl_addsessionid()
511 clone_conn_to_host = strdup(conn->conn_to_host.name); in Curl_ssl_addsessionid()
556 free(store->conn_to_host); in Curl_ssl_addsessionid()
558 store->conn_to_host = clone_conn_to_host; /* clone connect to host name */ in Curl_ssl_addsessionid()