Lines Matching refs:http_proxy

114 #include "http_proxy.h"
583 Curl_free_idnconverted_hostname(&conn->http_proxy.host);
585 Curl_safefree(conn->http_proxy.user);
587 Curl_safefree(conn->http_proxy.passwd);
589 Curl_safefree(conn->http_proxy.host.rawalloc); /* http proxy name buffer */
1091 if(!proxy_info_matches(&needle->http_proxy, &check->http_proxy))
1094 if(IS_HTTPS_PROXY(needle->http_proxy.proxytype)) {
1096 if(needle->http_proxy.proxytype != check->http_proxy.proxytype)
1248 /* Both check->http_proxy.user and check->http_proxy.passwd can be
1250 if(!check->http_proxy.user || !check->http_proxy.passwd)
1253 if(Curl_timestrcmp(needle->http_proxy.user,
1254 check->http_proxy.user) ||
1255 Curl_timestrcmp(needle->http_proxy.passwd,
1256 check->http_proxy.passwd))
1376 conn->http_proxy.proxytype = data->set.proxytype;
1384 (conn->http_proxy.proxytype == CURLPROXY_HTTP ||
1385 conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0 ||
1386 IS_HTTPS_PROXY(conn->http_proxy.proxytype))) ?
2093 * http_proxy=http://some.server.dom:port/
2136 if(!proxy && !strcasecompare("http_proxy", proxy_env)) {
2147 proxy = curl_getenv("http_proxy");
2263 proxyinfo = sockstype ? &conn->socks_proxy : &conn->http_proxy;
2389 CURLcode result = Curl_urldecode(proxyuser, 0, &conn->http_proxy.user, NULL,
2393 conn->http_proxy.user);
2395 result = Curl_urldecode(proxypasswd, 0, &conn->http_proxy.passwd,
2399 conn->http_proxy.passwd);
2500 curl_proxytype ptype = (curl_proxytype)conn->http_proxy.proxytype;
2516 if(conn->http_proxy.host.rawalloc) {
2540 if(!conn->http_proxy.host.rawalloc) {
2543 conn->socks_proxy.user = conn->http_proxy.user;
2544 conn->http_proxy.user = NULL;
2546 conn->socks_proxy.passwd = conn->http_proxy.passwd;
2547 conn->http_proxy.passwd = NULL;
2570 conn->http_proxy.proxytype = CURLPROXY_HTTP;
3210 &conn->http_proxy.host;
3350 Curl_safefree(existing->http_proxy.user);
3352 Curl_safefree(existing->http_proxy.passwd);
3354 existing->http_proxy.user = temp->http_proxy.user;
3356 existing->http_proxy.passwd = temp->http_proxy.passwd;
3358 temp->http_proxy.user = NULL;
3360 temp->http_proxy.passwd = NULL;
3533 result = Curl_idnconvert_hostname(&conn->http_proxy.host);
3670 conn->http_proxy.host.name ? conn->http_proxy.host.dispname :