Searched refs:http_proxy (Results 1 – 25 of 33) sorted by relevance
12
| /third_party/curl/ |
| D | backport-CVE-2023-27535-pre1.patch | 140 if(!check->http_proxy.user || !check->http_proxy.passwd) 143 - if(strcmp(needle->http_proxy.user, check->http_proxy.user) || 144 - strcmp(needle->http_proxy.passwd, check->http_proxy.passwd)) 145 + if(Curl_timestrcmp(needle->http_proxy.user, 146 + check->http_proxy.user) || 147 + Curl_timestrcmp(needle->http_proxy.passwd, 148 + check->http_proxy.passwd))
|
| D | backport-CVE-2022-42915.patch | 4 Subject: [PATCH 1/2] http_proxy: restore the protocol pointer on error 16 lib/http_proxy.c | 3 +-- 20 diff --git a/lib/http_proxy.c b/lib/http_proxy.c 22 --- a/lib/http_proxy.c 23 +++ b/lib/http_proxy.c
|
| D | backport-CVE-2022-42916.patch | 59 + result = Curl_idnconvert_hostname(data, &conn->http_proxy.host); 123 - result = Curl_idnconvert_hostname(data, &conn->http_proxy.host);
|
| D | BUILD.gn | 90 "$CURL_SOURCE_ROOT/lib/http_proxy.c",
|
| /third_party/mbedtls/tests/scripts/ |
| D | docker_env.sh | 75 ${http_proxy+--build-arg http_proxy=${http_proxy}} \
|
| /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/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()
|
| D | http.c | 75 char *http_proxy; member 139 …{ "http_proxy", "set HTTP proxy to tunnel through", OFFSET(http_proxy), AV_OPT_TYPE_STRING, { .str… 208 proxy_path = s->http_proxy ? s->http_proxy : getenv("http_proxy"); in http_open_cnx_internal() 218 if (s->http_proxy) { in http_open_cnx_internal() 219 err = av_dict_set(options, "http_proxy", s->http_proxy, 0); in http_open_cnx_internal()
|
| /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/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';
|
| /third_party/node/deps/npm/node_modules/http-proxy-agent/ |
| D | README.md | 31 var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
|
| /third_party/openssl/test/recipes/ |
| D | 80-test_cmp_http.t | 45 my $proxy = chop_dblquot($ENV{http_proxy} // $ENV{HTTP_PROXY} // "");
|
| /third_party/openssl/doc/man3/ |
| D | OSSL_HTTP_parse_url.pod | 38 If I<proxy> is NULL, take any default value from the C<http_proxy>
|
| D | OSSL_HTTP_transfer.pod | 76 If TLS is not used this defaults to the environment variable C<http_proxy> 244 C<http_proxy>, C<HTTP_PROXY>, C<https_proxy>, C<HTTPS_PROXY>, C<no_proxy>, and
|
| D | OSSL_CMP_CTX_new.pod | 343 the environment variable C<http_proxy> if set, else C<HTTP_PROXY>.
|
| /third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
| D | doctor_test.dart | 130 testUsingContext('shows when http_proxy is set', () { 134 ..environment = <String, String>{'http_proxy': 'fakeproxy.local'}, 160 'http_proxy': 'fakeproxy.local',
|
| /third_party/libwebsockets/READMEs/ |
| D | README.test-apps.md | 344 The http_proxy environment variable is respected by the client 350 $ export http_proxy=myproxy.com:3128
|
| /third_party/node/deps/npm/node_modules/request/ |
| D | README.md | 564 * `HTTP_PROXY` / `http_proxy` 568 When `HTTP_PROXY` / `http_proxy` are set, they will be used to proxy non-SSL requests that do not h… 577 * `*` - ignore `https_proxy`/`http_proxy` environment variables altogether.
|
| /third_party/node/deps/npm/docs/content/using-npm/ |
| D | config.md | 538 `https_proxy` or `HTTP_PROXY` or `http_proxy` environment variables are set, 901 `http_proxy` environment variables are set, proxy settings will be
|
| /third_party/openssl/doc/man1/ |
| D | openssl-ocsp.pod.in | 181 Defaults to the environment variable C<http_proxy> if set, else C<HTTP_PROXY>
|
| D | openssl-cmp.pod.in | 462 Defaults to the environment variable C<http_proxy> if set, else C<HTTP_PROXY> 1084 via the environment variable B<http_proxy> or via the B<-proxy> option in the
|
| /third_party/python/Doc/howto/ |
| D | urllib2.rst | 517 -- ``ProxyHandler`` (if a proxy setting such as an :envvar:`http_proxy`
|
| /third_party/python/Doc/library/ |
| D | urllib.request.rst | 80 environment variable like :envvar:`http_proxy` is set), 1266 involved. For example, the :envvar:`http_proxy` environment variable is read to
|
12