HomeSort by: relevance | last modified time | path
    Searched refs:no_proxy (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssl/dist/crypto/http/
http_lib.c 256 /* Respect no_proxy, taking default value from environment variable(s) */
257 static int use_proxy(const char *no_proxy, const char *server)
277 if (no_proxy == NULL)
278 no_proxy = ossl_safe_getenv("no_proxy");
279 if (no_proxy == NULL)
280 no_proxy = ossl_safe_getenv(OPENSSL_NO_PROXY);
282 if (no_proxy != NULL)
283 found = strstr(no_proxy, server);
285 && ((found != no_proxy && !ossl_isspace(found[-1]) && found[-1] != ','
    [all...]
http_client.c 941 const char *proxy, const char *no_proxy,
960 if (proxy != NULL || no_proxy != NULL) {
974 proxy = OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl);
1134 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
1163 rctx = OSSL_HTTP_open(host, port, proxy, no_proxy,
1226 const char *proxy, const char *no_proxy,
1238 rctx = OSSL_HTTP_open(server, port, proxy, no_proxy,
  /src/crypto/external/apache2/openssl/dist/crypto/http/
http_lib.c 256 /* Respect no_proxy, taking default value from environment variable(s) */
257 static int use_proxy(const char *no_proxy, const char *server)
281 if (no_proxy == NULL)
282 no_proxy = ossl_safe_getenv("no_proxy");
283 if (no_proxy == NULL)
284 no_proxy = ossl_safe_getenv(OPENSSL_NO_PROXY);
286 if (no_proxy != NULL)
287 found = strstr(no_proxy, server);
289 && ((found != no_proxy && !ossl_isspace(found[-1]) && found[-1] != ','
    [all...]
http_client.c 1091 const char *proxy, const char *no_proxy,
1110 if (proxy != NULL || no_proxy != NULL) {
1124 proxy = OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl);
1283 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
1314 rctx = OSSL_HTTP_open(host, port, proxy, no_proxy,
1375 const char *proxy, const char *no_proxy,
1387 rctx = OSSL_HTTP_open(server, port, proxy, no_proxy,
  /src/crypto/external/apache2/openssl/dist/include/openssl/
http.h 31 #define OPENSSL_NO_PROXY "NO_PROXY"
75 const char *proxy, const char *no_proxy,
88 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
97 const char *proxy, const char *no_proxy,
110 const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
  /src/crypto/external/bsd/openssl/dist/include/openssl/
http.h 32 # define OPENSSL_NO_PROXY "NO_PROXY"
66 const char *proxy, const char *no_proxy,
79 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
88 const char *proxy, const char *no_proxy,
104 const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
  /src/crypto/external/apache2/openssl/dist/test/recipes/
80-test_cmp_http.t 52 my $no_proxy = $ENV{no_proxy} // $ENV{NO_PROXY};
280 my $noproxy = $no_proxy;
282 if ($line =~ m/,\s*-no_proxy\s*,(.*?)(,|$)/) {
286 $line =~ s{-section,,}{-section,,-no_proxy,$server_plain,} ;
289 next LOOP if $no_proxy && ($noproxy =~ $server_plain);
  /src/crypto/external/bsd/openssl/dist/test/recipes/
80-test_cmp_http.t 48 my $no_proxy = $ENV{no_proxy} // $ENV{NO_PROXY};
234 my $noproxy = $no_proxy;
235 if ($line =~ m/,\s*-no_proxy\s*,(.*?)(,|$)/) {
239 $line =~ s{-section,,}{-section,,-no_proxy,127.0.0.1,} ;
242 next LOOP if $no_proxy && ($noproxy =~ $server_host);
  /src/crypto/external/bsd/openssl/dist/crypto/cmp/
cmp_http.c 81 ctx->proxy, ctx->no_proxy,
cmp_ctx.c 196 OPENSSL_free(ctx->no_proxy);
905 DEFINE_OSSL_CMP_CTX_set1(no_proxy, char)
cmp_local.h 48 char *no_proxy; member in struct:ossl_cmp_ctx_st
  /src/crypto/external/apache2/openssl/dist/crypto/cmp/
cmp_http.c 94 ctx->proxy, ctx->no_proxy,
cmp_ctx.c 208 OPENSSL_free(ctx->no_proxy);
831 DEFINE_OSSL_CMP_CTX_set1(no_proxy, char)
cmp_local.h 48 char *no_proxy; member in struct:ossl_cmp_ctx_st
  /src/external/gpl2/xcvs/dist/src/
root.c 482 int check_hostname, no_port, no_password, no_proxy; local
764 no_proxy = 1;
827 no_proxy = 0;
838 no_proxy = 0;
853 if (no_proxy && (newroot->proxy_hostname || newroot->proxy_port))
  /src/crypto/external/apache2/openssl/dist/apps/include/
apps.h 193 const char *proxy, const char *no_proxy,
296 const char *no_proxy, SSL_CTX *ssl_ctx,
302 const char *no_proxy, SSL_CTX *ctx,
  /src/crypto/external/bsd/openssl/dist/apps/include/
apps.h 186 const char *proxy, const char *no_proxy,
288 const char *no_proxy, SSL_CTX *ssl_ctx,
294 const char *no_proxy, SSL_CTX *ctx,
  /src/external/bsd/fetch/dist/libfetch/
common.c 1019 * The no_proxy environment variable specifies a set of domains for
1029 const char *no_proxy, *p, *q; local
1032 if ((no_proxy = getenv("NO_PROXY")) == NULL &&
1033 (no_proxy = getenv("no_proxy")) == NULL)
1037 if (strcmp(no_proxy, "*") == 0)
1041 p = no_proxy;
  /src/crypto/external/bsd/openssl/dist/apps/lib/
apps.c 2540 const char *no_proxy, SSL_CTX *ssl_ctx,
2574 OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl) != NULL;
2577 mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */,
2593 const char *no_proxy, SSL_CTX *ssl_ctx,
2611 OSSL_HTTP_adapt_proxy(proxy, no_proxy, host, use_ssl) != NULL;
2615 proxy, no_proxy, NULL /* bio */, NULL /* rbio */,
  /src/crypto/external/bsd/openssl/dist/apps/
s_server.c 453 char *proxy, *no_proxy; member in struct:tlsextstatusctx_st
473 char *proxy = NULL, *no_proxy = NULL; local
509 no_proxy = srctx->no_proxy;
541 *resp = process_responder(req, host, port, path, proxy, no_proxy,
855 {"no_proxy", OPT_NO_PROXY, 's',
858 "Default from environment variable 'no_proxy', else 'NO_PROXY', else none"},
1371 tlscstatp.no_proxy = opt_arg();
ocsp.c 168 {"no_proxy", OPT_NO_PROXY, 's',
171 "Default from environment variable 'no_proxy', else 'NO_PROXY', else none"},
1233 const char *proxy, const char *no_proxy,
1249 app_http_post_asn1(host, port, path, proxy, no_proxy,
  /src/usr.bin/ftp/
fetch.c 747 char *cp, *ep, *np, *np_copy, *np_iter, *no_proxy; local
753 no_proxy = getoptionvalue("no_proxy");
754 if (EMPTYSTRING(no_proxy))
757 np_iter = np_copy = ftp_strdup(no_proxy);
  /src/crypto/external/apache2/openssl/dist/apps/
ocsp.c 206 { "no_proxy", OPT_NO_PROXY, 's',
209 "Default from environment variable 'no_proxy', else 'NO_PROXY', else none" },
1288 const char *proxy, const char *no_proxy,
1304 app_http_post_asn1(host, port, path, proxy, no_proxy,
s_server.c 462 char *proxy, *no_proxy; member in struct:tlsextstatusctx_st
482 char *proxy = NULL, *no_proxy = NULL; local
522 no_proxy = srctx->no_proxy;
566 *resp = process_responder(req, host, port, path, proxy, no_proxy,
985 { "no_proxy", OPT_NO_PROXY, 's',
988 "Default from environment variable 'no_proxy', else 'NO_PROXY', else none" },
1519 tlscstatp.no_proxy = opt_arg();
  /src/crypto/external/apache2/openssl/dist/apps/lib/
apps.c 2612 const char *no_proxy, SSL_CTX *ssl_ctx,
2646 OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl) != NULL;
2649 mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */,
2664 const char *no_proxy, SSL_CTX *ssl_ctx,
2682 OSSL_HTTP_adapt_proxy(proxy, no_proxy, host, use_ssl) != NULL;
2686 proxy, no_proxy, NULL /* bio */, NULL /* rbio */,

Completed in 71 milliseconds

1 2