Lines Matching refs:conn
60 DEBUGASSERT(cf->conn); in Curl_http_proxy_get_destination()
62 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()
65 *phostname = cf->conn->secondaryhostname; in Curl_http_proxy_get_destination()
67 *phostname = cf->conn->host.name; in Curl_http_proxy_get_destination()
70 *pport = cf->conn->secondary_port; in Curl_http_proxy_get_destination()
71 else if(cf->conn->bits.conn_to_port) in Curl_http_proxy_get_destination()
72 *pport = cf->conn->conn_to_port; in Curl_http_proxy_get_destination()
74 *pport = cf->conn->remote_port; in Curl_http_proxy_get_destination()
76 if(*phostname != cf->conn->host.name) in Curl_http_proxy_get_destination()
79 *pipv6_ip = cf->conn->bits.ipv6_ip; in Curl_http_proxy_get_destination()
114 result = Curl_http_output_auth(data, cf->conn, req->method, HTTPREQ_GET, in Curl_http_proxy_create_CONNECT()
121 !Curl_checkProxyheaders(data, cf->conn, STRCONST("Host"))) { in Curl_http_proxy_create_CONNECT()
134 if(!Curl_checkProxyheaders(data, cf->conn, STRCONST("User-Agent")) && in Curl_http_proxy_create_CONNECT()
143 !Curl_checkProxyheaders(data, cf->conn, STRCONST("Proxy-Connection"))) { in Curl_http_proxy_create_CONNECT()
189 cf->conn->proxy_alpn : CURL_HTTP_VERSION_1_1; in http_proxy_cf_connect()
250 *phost = cf->conn->http_proxy.host.name; in Curl_cf_http_proxy_get_host()
251 *pdisplay_host = cf->conn->http_proxy.host.dispname; in Curl_cf_http_proxy_get_host()
252 *pport = (int)cf->conn->http_proxy.port; in Curl_cf_http_proxy_get_host()