Home
last modified time | relevance | path

Searched refs:no_proxy (Results 1 – 25 of 49) sorted by relevance

12

/third_party/openssl/crypto/http/
Dhttp_lib.c242 static int use_proxy(const char *no_proxy, const char *server) in use_proxy() argument
255 if (no_proxy == NULL) in use_proxy()
256 no_proxy = ossl_safe_getenv("no_proxy"); in use_proxy()
257 if (no_proxy == NULL) in use_proxy()
258 no_proxy = ossl_safe_getenv(OPENSSL_NO_PROXY); in use_proxy()
260 if (no_proxy != NULL) in use_proxy()
261 found = strstr(no_proxy, server); in use_proxy()
263 && ((found != no_proxy && found[-1] != ' ' && found[-1] != ',') in use_proxy()
270 const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy, in OSSL_HTTP_adapt_proxy() argument
282 if (proxy == NULL || *proxy == '\0' || !use_proxy(no_proxy, server)) in OSSL_HTTP_adapt_proxy()
Dhttp_client.c917 const char *proxy, const char *no_proxy, in OSSL_HTTP_open() argument
936 if (proxy != NULL || no_proxy != NULL) { in OSSL_HTTP_open()
952 proxy = OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl); in OSSL_HTTP_open()
1112 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy, in OSSL_HTTP_get() argument
1141 rctx = OSSL_HTTP_open(host, port, proxy, no_proxy, in OSSL_HTTP_get()
1204 const char *proxy, const char *no_proxy, in OSSL_HTTP_transfer() argument
1216 rctx = OSSL_HTTP_open(server, port, proxy, no_proxy, in OSSL_HTTP_transfer()
/third_party/node/deps/openssl/openssl/crypto/http/
Dhttp_lib.c250 static int use_proxy(const char *no_proxy, const char *server) in use_proxy() argument
263 if (no_proxy == NULL) in use_proxy()
264 no_proxy = ossl_safe_getenv("no_proxy"); in use_proxy()
265 if (no_proxy == NULL) in use_proxy()
266 no_proxy = ossl_safe_getenv(OPENSSL_NO_PROXY); in use_proxy()
268 if (no_proxy != NULL) in use_proxy()
269 found = strstr(no_proxy, server); in use_proxy()
271 && ((found != no_proxy && found[-1] != ' ' && found[-1] != ',') in use_proxy()
278 const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy, in OSSL_HTTP_adapt_proxy() argument
290 if (proxy == NULL || *proxy == '\0' || !use_proxy(no_proxy, server)) in OSSL_HTTP_adapt_proxy()
Dhttp_client.c928 const char *proxy, const char *no_proxy, in OSSL_HTTP_open() argument
947 if (proxy != NULL || no_proxy != NULL) { in OSSL_HTTP_open()
963 proxy = OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl); in OSSL_HTTP_open()
1123 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy, in OSSL_HTTP_get() argument
1152 rctx = OSSL_HTTP_open(host, port, proxy, no_proxy, in OSSL_HTTP_get()
1215 const char *proxy, const char *no_proxy, in OSSL_HTTP_transfer() argument
1227 rctx = OSSL_HTTP_open(server, port, proxy, no_proxy, in OSSL_HTTP_transfer()
/third_party/curl/lib/
Dnoproxy.c122 bool Curl_check_noproxy(const char *name, const char *no_proxy, in Curl_check_noproxy() argument
139 if(no_proxy && no_proxy[0]) { in Curl_check_noproxy()
140 const char *p = no_proxy; in Curl_check_noproxy()
143 if(!strcmp("*", no_proxy)) in Curl_check_noproxy()
Dnoproxy.h40 bool Curl_check_noproxy(const char *name, const char *no_proxy,
Durl.c2410 char *no_proxy = NULL; local
2448 no_proxy = curl_getenv(p);
2449 if(!no_proxy) {
2451 no_proxy = curl_getenv(p);
2453 if(no_proxy) {
2454 infof(data, "Uses proxy env variable %s == '%s'", p, no_proxy);
2459 data->set.str[STRING_NOPROXY] : no_proxy,
2472 Curl_safefree(no_proxy);
/third_party/node/deps/openssl/openssl/include/openssl/
Dhttp.h65 const char *proxy, const char *no_proxy,
78 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
87 const char *proxy, const char *no_proxy,
103 const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
/third_party/openssl/include/openssl/
Dhttp.h65 const char *proxy, const char *no_proxy,
78 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
87 const char *proxy, const char *no_proxy,
103 const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
/third_party/openssl/test/recipes/80-test_cmp_http_data/
Dtest_connection.csv1 expected,description, -section,val, -server,val, -proxy,val, -no_proxy,val, -tls_used,noarg, -path,…
20 …section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,127.0.0.1:x*/8888, -no_proxy,nonmatch.com,BLAN…
21 … -section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,127.0.0.1:65536, -no_proxy,nonmatch.com,BLAN…
22 0,proxy default port, -section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,127.0.0.1, -no_proxy,non…
23 0,proxy missing argument, -section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,, -no_proxy,nonmatch…
/third_party/openssl/test/recipes/
D80-test_cmp_http.t48 my $no_proxy = $ENV{no_proxy} // $ENV{NO_PROXY};
234 my $noproxy = $no_proxy;
242 next LOOP if $no_proxy && ($noproxy =~ $server_host);
/third_party/openssl/doc/man3/
DOSSL_HTTP_parse_url.pod15 const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
36 and returns it transformed according to the optional I<no_proxy> parameter,
43 If I<no_proxy> is NULL, take any default exclusion value from the C<no_proxy>
DOSSL_HTTP_transfer.pod22 const char *proxy, const char *no_proxy,
35 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
44 const char *proxy, const char *no_proxy,
72 If I<bio> is given, it is an error to provide I<proxy> or I<no_proxy> arguments,
75 HTTP(S) proxy to use (unless overridden by "no_proxy" settings).
85 is found in the optional list I<no_proxy> of proxy hostnames (if not NULL;
86 default is the environment variable C<no_proxy> if set, else C<NO_PROXY>).
244 C<http_proxy>, C<HTTP_PROXY>, C<https_proxy>, C<HTTPS_PROXY>, C<no_proxy>, and
/third_party/openssl/apps/include/
Dapps.h186 const char *proxy, const char *no_proxy,
288 const char *no_proxy, SSL_CTX *ssl_ctx,
294 const char *no_proxy, SSL_CTX *ctx,
/third_party/node/deps/openssl/openssl/apps/include/
Dapps.h186 const char *proxy, const char *no_proxy,
288 const char *no_proxy, SSL_CTX *ssl_ctx,
294 const char *no_proxy, SSL_CTX *ctx,
/third_party/ffmpeg/libavformat/
Dnetwork.c551 int ff_http_match_no_proxy(const char *no_proxy, const char *hostname) in ff_http_match_no_proxy() argument
555 if (!no_proxy) in ff_http_match_no_proxy()
559 buf = av_strdup(no_proxy); in ff_http_match_no_proxy()
Dnetwork.h307 int ff_http_match_no_proxy(const char *no_proxy, const char *hostname);
/third_party/curl/tests/data/
Dtest110133 no_proxy=%HOSTIP
/third_party/openssl/crypto/cmp/
Dcmp_http.c81 ctx->proxy, ctx->no_proxy, in OSSL_CMP_MSG_http_perform()
/third_party/node/deps/openssl/openssl/crypto/cmp/
Dcmp_http.c81 ctx->proxy, ctx->no_proxy, in OSSL_CMP_MSG_http_perform()
/third_party/node/deps/npm/node_modules/@npmcli/agent/lib/
Dproxy.js74 noProxy = PROXY_ENV.no_proxy
/third_party/curl/docs/cmdline-opts/
Dnoproxy.md26 (`no_proxy` and `NO_PROXY`) (added in 7.53.0). If there is an environment
/third_party/curl/docs/libcurl/opts/
DCURLOPT_NOPROXY.md54 If there is an environment variable called **no_proxy** (or **NO_PROXY**),
DCURLOPT_PROXY.md102 If **no_proxy** (or **NO_PROXY**) is set, it is the exact equivalent of
/third_party/openssl/doc/man1/
Dopenssl-ocsp.pod.in35 [B<-no_proxy> I<addresses>]
176 The HTTP(S) proxy server to use for reaching the OCSP server unless B<-no_proxy>
184 =item B<-no_proxy> I<addresses>
189 Default is from the environment variable C<no_proxy> if set, else C<NO_PROXY>.

12