Lines Matching refs:http_proxy
578 Curl_free_idnconverted_hostname(&conn->http_proxy.host); in Curl_conn_free()
580 Curl_safefree(conn->http_proxy.user); in Curl_conn_free()
582 Curl_safefree(conn->http_proxy.passwd); in Curl_conn_free()
584 Curl_safefree(conn->http_proxy.host.rawalloc); /* http proxy name buffer */ in Curl_conn_free()
983 if(!proxy_info_matches(&needle->http_proxy, &conn->http_proxy)) in url_match_conn()
986 if(IS_HTTPS_PROXY(needle->http_proxy.proxytype)) { in url_match_conn()
988 if(needle->http_proxy.proxytype != conn->http_proxy.proxytype) in url_match_conn()
1138 if(!conn->http_proxy.user || !conn->http_proxy.passwd) in url_match_conn()
1141 if(Curl_timestrcmp(needle->http_proxy.user, in url_match_conn()
1142 conn->http_proxy.user) || in url_match_conn()
1143 Curl_timestrcmp(needle->http_proxy.passwd, in url_match_conn()
1144 conn->http_proxy.passwd)) in url_match_conn()
1340 conn->http_proxy.proxytype = data->set.proxytype; in allocate_conn()
1348 (conn->http_proxy.proxytype == CURLPROXY_HTTP || in allocate_conn()
1349 conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0 || in allocate_conn()
1350 IS_HTTPS_PROXY(conn->http_proxy.proxytype))); in allocate_conn()
2013 hostname = conn->http_proxy.host.name;
2221 proxyinfo = sockstype ? &conn->socks_proxy : &conn->http_proxy;
2350 conn->http_proxy.user = strdup(proxyuser);
2351 if(conn->http_proxy.user) {
2352 conn->http_proxy.passwd = strdup(proxypasswd);
2353 if(conn->http_proxy.passwd)
2356 Curl_safefree(conn->http_proxy.user);
2453 curl_proxytype ptype = (curl_proxytype)conn->http_proxy.proxytype;
2469 if(conn->http_proxy.host.rawalloc) {
2493 if(!conn->http_proxy.host.rawalloc) {
2496 conn->socks_proxy.user = conn->http_proxy.user;
2497 conn->http_proxy.user = NULL;
2499 conn->socks_proxy.passwd = conn->http_proxy.passwd;
2500 conn->http_proxy.passwd = NULL;
2523 conn->http_proxy.proxytype = CURLPROXY_HTTP;
3227 &conn->http_proxy.host;
3289 Curl_safefree(existing->http_proxy.user);
3291 Curl_safefree(existing->http_proxy.passwd);
3293 existing->http_proxy.user = temp->http_proxy.user;
3295 existing->http_proxy.passwd = temp->http_proxy.passwd;
3297 temp->http_proxy.user = NULL;
3299 temp->http_proxy.passwd = NULL;
3470 result = Curl_idnconvert_hostname(&conn->http_proxy.host);
3610 conn->http_proxy.host.name ? conn->http_proxy.host.dispname :