/third_party/openssl/crypto/http/ |
H A D | http_lib.c | 241 /* Respect no_proxy, taking default value from environment variable(s) */ 242 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 in use_proxy() 270 OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy, const char *server, int use_ssl) OSSL_HTTP_adapt_proxy() argument [all...] |
H A D | http_client.c | 917 const char *proxy, const char *no_proxy, in OSSL_HTTP_open() 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() 1216 rctx = OSSL_HTTP_open(server, port, proxy, no_proxy, in OSSL_HTTP_transfer() 916 OSSL_HTTP_open(const char *server, const char *port, const char *proxy, const char *no_proxy, int use_ssl, BIO *bio, BIO *rbio, OSSL_HTTP_bio_cb_t bio_update_fn, void *arg, int buf_size, int overall_timeout) OSSL_HTTP_open() argument 1201 OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx, const char *server, const char *port, const char *path, int use_ssl, const char *proxy, const char *no_proxy, BIO *bio, BIO *rbio, OSSL_HTTP_bio_cb_t bio_update_fn, void *arg, int buf_size, const STACK_OF(CONF_VALUE) *headers, const char *content_type, BIO *req, const char *expected_ct, int expect_asn1, size_t max_resp_len, int timeout, int keep_alive) OSSL_HTTP_transfer() argument
|
/third_party/node/deps/openssl/openssl/crypto/http/ |
H A D | http_lib.c | 249 /* Respect no_proxy, taking default value from environment variable(s) */ 250 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 in use_proxy() 278 OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy, const char *server, int use_ssl) OSSL_HTTP_adapt_proxy() argument [all...] |
H A D | http_client.c | 928 const char *proxy, const char *no_proxy, in OSSL_HTTP_open() 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() 1227 rctx = OSSL_HTTP_open(server, port, proxy, no_proxy, in OSSL_HTTP_transfer() 927 OSSL_HTTP_open(const char *server, const char *port, const char *proxy, const char *no_proxy, int use_ssl, BIO *bio, BIO *rbio, OSSL_HTTP_bio_cb_t bio_update_fn, void *arg, int buf_size, int overall_timeout) OSSL_HTTP_open() argument 1212 OSSL_HTTP_transfer(OSSL_HTTP_REQ_CTX **prctx, const char *server, const char *port, const char *path, int use_ssl, const char *proxy, const char *no_proxy, BIO *bio, BIO *rbio, OSSL_HTTP_bio_cb_t bio_update_fn, void *arg, int buf_size, const STACK_OF(CONF_VALUE) *headers, const char *content_type, BIO *req, const char *expected_ct, int expect_asn1, size_t max_resp_len, int timeout, int keep_alive) OSSL_HTTP_transfer() argument
|
/third_party/curl/lib/ |
H A D | noproxy.c | 122 bool Curl_check_noproxy(const char *name, const char *no_proxy, in Curl_check_noproxy() argument 134 /* no_proxy=domain1.dom,host.domain2.dom in Curl_check_noproxy() 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()
|
H A D | noproxy.h | 40 bool Curl_check_noproxy(const char *name, const char *no_proxy,
|
H A D | url.c | 2096 * no_proxy=domain1.dom,host.domain2.dom 2410 char *no_proxy = NULL; local 2447 const char *p = "no_proxy"; 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); [all...] |
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | http.h | 65 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/ |
H A D | http.h | 65 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/ffmpeg/libavformat/ |
H A D | network.c | 551 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()
|
H A D | network.h | 307 int ff_http_match_no_proxy(const char *no_proxy, const char *hostname);
|
/third_party/node/deps/openssl/openssl/apps/include/ |
H A D | 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,
|
/third_party/openssl/apps/include/ |
H A D | 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,
|
/third_party/node/deps/npm/node_modules/@npmcli/agent/lib/ |
H A D | proxy.js | 13 const PROXY_ENV_KEYS = new Set(['https_proxy', 'http_proxy', 'proxy', 'no_proxy']) 74 noProxy = PROXY_ENV.no_proxy
|
/third_party/node/deps/openssl/openssl/crypto/cmp/ |
H A D | cmp_http.c | 81 ctx->proxy, ctx->no_proxy, in OSSL_CMP_MSG_http_perform()
|
H A D | cmp_ctx.c | 196 OPENSSL_free(ctx->no_proxy); in OSSL_CMP_CTX_free() 905 DEFINE_OSSL_CMP_CTX_set1(no_proxy, char)
|
H A D | cmp_local.h | 48 char *no_proxy; member
|
/third_party/openssl/crypto/cmp/ |
H A D | cmp_http.c | 81 ctx->proxy, ctx->no_proxy, in OSSL_CMP_MSG_http_perform()
|
H A D | cmp_ctx.c | 196 OPENSSL_free(ctx->no_proxy); in OSSL_CMP_CTX_free() 905 DEFINE_OSSL_CMP_CTX_set1(no_proxy, char)
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_server.c | 453 char *proxy, *no_proxy; member 473 char *proxy = NULL, *no_proxy = NULL; in get_ocsp_resp_from_responder() local 509 no_proxy = srctx->no_proxy; in get_ocsp_resp_from_responder() 541 *resp = process_responder(req, host, port, path, proxy, no_proxy, in get_ocsp_resp_from_responder() 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(); in s_server_main()
|
H A D | 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, in process_responder() 1249 app_http_post_asn1(host, port, path, proxy, no_proxy, in process_responder() 1231 process_responder(OCSP_REQUEST *req, const char *host, const char *port, const char *path, const char *proxy, const char *no_proxy, int use_ssl, STACK_OF(CONF_VALUE) *headers, int req_timeout) process_responder() argument
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | apps.c | 2540 const char *no_proxy, SSL_CTX *ssl_ctx, in app_http_get_asn1() 2574 OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl) != NULL; in app_http_get_asn1() 2577 mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */, in app_http_get_asn1() 2593 const char *no_proxy, SSL_CTX *ssl_ctx, in app_http_post_asn1() 2611 OSSL_HTTP_adapt_proxy(proxy, no_proxy, host, use_ssl) != NULL; in app_http_post_asn1() 2615 proxy, no_proxy, NULL /* bio */, NULL /* rbio */, in app_http_post_asn1() 2539 app_http_get_asn1(const char *url, const char *proxy, const char *no_proxy, SSL_CTX *ssl_ctx, const STACK_OF(CONF_VALUE) *headers, long timeout, const char *expected_content_type, const ASN1_ITEM *it) app_http_get_asn1() argument 2591 app_http_post_asn1(const char *host, const char *port, const char *path, const char *proxy, const char *no_proxy, SSL_CTX *ssl_ctx, const STACK_OF(CONF_VALUE) *headers, const char *content_type, ASN1_VALUE *req, const ASN1_ITEM *req_it, const char *expected_content_type, long timeout, const ASN1_ITEM *rsp_it) app_http_post_asn1() argument
|
/third_party/openssl/apps/ |
H A D | s_server.c | 453 char *proxy, *no_proxy; member 473 char *proxy = NULL, *no_proxy = NULL; in get_ocsp_resp_from_responder() local 509 no_proxy = srctx->no_proxy; in get_ocsp_resp_from_responder() 541 *resp = process_responder(req, host, port, path, proxy, no_proxy, in get_ocsp_resp_from_responder() 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(); in s_server_main()
|
H A D | 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, in process_responder() 1249 app_http_post_asn1(host, port, path, proxy, no_proxy, in process_responder() 1231 process_responder(OCSP_REQUEST *req, const char *host, const char *port, const char *path, const char *proxy, const char *no_proxy, int use_ssl, STACK_OF(CONF_VALUE) *headers, int req_timeout) process_responder() argument
|
/third_party/openssl/apps/lib/ |
H A D | apps.c | 2533 const char *no_proxy, SSL_CTX *ssl_ctx, in app_http_get_asn1() 2567 OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl) != NULL; in app_http_get_asn1() 2570 mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */, in app_http_get_asn1() 2586 const char *no_proxy, SSL_CTX *ssl_ctx, in app_http_post_asn1() 2604 OSSL_HTTP_adapt_proxy(proxy, no_proxy, host, use_ssl) != NULL; in app_http_post_asn1() 2608 proxy, no_proxy, NULL /* bio */, NULL /* rbio */, in app_http_post_asn1() 2532 app_http_get_asn1(const char *url, const char *proxy, const char *no_proxy, SSL_CTX *ssl_ctx, const STACK_OF(CONF_VALUE) *headers, long timeout, const char *expected_content_type, const ASN1_ITEM *it) app_http_get_asn1() argument 2584 app_http_post_asn1(const char *host, const char *port, const char *path, const char *proxy, const char *no_proxy, SSL_CTX *ssl_ctx, const STACK_OF(CONF_VALUE) *headers, const char *content_type, ASN1_VALUE *req, const ASN1_ITEM *req_it, const char *expected_content_type, long timeout, const ASN1_ITEM *rsp_it) app_http_post_asn1() argument
|