Searched refs:http_proxy (Results 1 – 25 of 66) sorted by relevance
123
/third_party/mbedtls/tests/scripts/ |
D | docker_env.sh | 75 ${http_proxy+--build-arg http_proxy=${http_proxy}} \
|
/third_party/curl/tests/data/ |
D | test1250 | 6 http_proxy 30 Access a non-proxied host with using the combination of http_proxy env var and --noproxy option 33 http_proxy=http://dummy:%PROXYPORT/
|
D | test1251 | 6 http_proxy 30 Access a non-proxied host with using the combination of http_proxy env var and NO_PROXY env var 33 http_proxy=http://dummy:%PROXYPORT/
|
D | test1255 | 30 Under condition using http_proxy, override NO_PROXY by --nproxy and access target URL directly 33 http_proxy=http://%HOSTIP:%HTTPPORT
|
D | test709 | 37 http_proxy=socks5://%HOSTIP:%SOCKSPORT 40 HTTP GET via SOCKS5 set in http_proxy environment variable
|
D | test1256 | 30 Under condition using http_proxy, override NO_PROXY by --nproxy and access target URL through proxy 33 http_proxy=http://%HOSTIP:%HTTPPORT
|
D | test1257 | 30 Under condition using http_proxy, override NO_PROXY by --nproxy and access target URL through proxy 33 http_proxy=http://%HOSTIP:%HTTPPORT
|
D | test1265 | 33 http_proxy=http://%HOSTIP:%HTTPPORT
|
D | test1101 | 34 http_proxy=http://non-existing-host.haxx.se:3128/
|
D | test63 | 31 http_proxy=http://fake:user@%HOSTIP:%HTTPPORT/
|
/third_party/curl/lib/ |
D | url.h | 69 (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\ 73 (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\ 77 (conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
|
D | url.c | 768 Curl_free_idnconverted_hostname(&conn->http_proxy.host); in conn_free() 770 Curl_safefree(conn->http_proxy.user); in conn_free() 772 Curl_safefree(conn->http_proxy.passwd); in conn_free() 774 Curl_safefree(conn->http_proxy.host.rawalloc); /* http proxy name buffer */ in conn_free() 1264 if(!proxy_info_matches(&needle->http_proxy, &check->http_proxy)) in ConnectionExists() 1270 if(needle->http_proxy.proxytype == CURLPROXY_HTTPS) { in ConnectionExists() 1444 if(!check->http_proxy.user || !check->http_proxy.passwd) in ConnectionExists() 1447 if(Curl_timestrcmp(needle->http_proxy.user, in ConnectionExists() 1448 check->http_proxy.user) || in ConnectionExists() 1449 Curl_timestrcmp(needle->http_proxy.passwd, in ConnectionExists() [all …]
|
D | http_negotiate.c | 55 userp = conn->http_proxy.user; in Curl_input_negotiate() 56 passwdp = conn->http_proxy.passwd; in Curl_input_negotiate() 59 host = conn->http_proxy.host.name; in Curl_input_negotiate()
|
D | http_proxy.c | 60 DEBUGASSERT(conn->http_proxy.proxytype == CURLPROXY_HTTPS); in https_proxy_connect() 82 if(conn->http_proxy.proxytype == CURLPROXY_HTTPS) { in Curl_proxy_connect() 149 http = &conn->connect_state->http_proxy; in Curl_connect_getsock() 186 data->req.p.http = &s->http_proxy; in connect_init() 305 (conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) ? "1.0" : "1.1"; in CONNECT() 821 if((conn->http_proxy.proxytype == CURLPROXY_HTTP_1_0) && in CONNECT()
|
D | http_proxy.h | 56 struct HTTP http_proxy; member
|
D | Makefile.inc | 156 http_proxy.c \ 283 http_proxy.h \
|
D | http_ntlm.c | 160 hostname = conn->http_proxy.host.name; in Curl_output_ntlm()
|
/third_party/node/deps/npm/node_modules/http-proxy-agent/test/ |
D | test.js | 116 … var proxy = process.env.HTTP_PROXY || process.env.http_proxy || 'http://127.0.0.1:' + proxyPort; 173 … var proxy = process.env.HTTP_PROXY || process.env.http_proxy || 'http://127.0.0.1:' + proxyPort; 199 …var proxyUri = process.env.HTTP_PROXY || process.env.http_proxy || 'http://127.0.0.1:' + proxyPort; 227 …var proxyUri = process.env.HTTP_PROXY || process.env.http_proxy || 'http://127.0.0.1:' + proxyPort; 271 … var proxy = process.env.HTTP_PROXY || process.env.http_proxy || 'http://127.0.0.1:' + proxyPort;
|
/third_party/curl/docs/examples/ |
D | synctime.c | 106 char http_proxy[MAX_STRING1]; member 250 *conf->http_proxy = 0; in conf_init() 284 snprintf(conf->http_proxy, MAX_STRING, "%s", &argv[OptionIndex][8]); in main() 312 SyncTime_CURL_Init(curl, conf->http_proxy, conf->proxy_user); in main()
|
/third_party/ffmpeg/libavformat/ |
D | tls.h | 37 char *http_proxy; member 54 …et proxy to tunnel through", offsetof(pstruct, options_field . http_proxy), AV_OPT_TYPE_ST…
|
D | tls.c | 92 proxy_path = c->http_proxy ? c->http_proxy : getenv("http_proxy"); in ff_tls_open_underlying()
|
/third_party/node/deps/npm/node_modules/request/lib/ |
D | getProxyFromURI.js | 63 process.env.http_proxy || null 70 process.env.http_proxy || null
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | proxy.js | 73 env.http_proxy || 82 env.http_proxy ||
|
/third_party/curl/lib/vtls/ |
D | vtls.h | 145 (CURLPROXY_HTTPS == conn->http_proxy.proxytype && \ 156 (SSL_IS_PROXY() ? conn->http_proxy.host.name : conn->host.name) 158 (SSL_IS_PROXY() ? conn->http_proxy.host.dispname : conn->host.dispname)
|
/third_party/node/deps/npm/node_modules/https-proxy-agent/ |
D | README.md | 39 var proxy = process.env.http_proxy || 'http://168.63.76.32:3128'; 65 var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
|
123