| /freebsd/crypto/openssl/crypto/http/ |
| H A D | http_lib.c | 252 /* Respect no_proxy, taking default value from environment variable(s) */ 253 static int use_proxy(const char *no_proxy, const char *server) in use_proxy() argument 274 if (no_proxy == NULL) in use_proxy() 275 no_proxy = ossl_safe_getenv("no_proxy"); in use_proxy() 276 if (no_proxy == NULL) in use_proxy() 277 no_proxy = ossl_safe_getenv(OPENSSL_NO_PROXY); in use_proxy() 279 if (no_proxy != NULL) in use_proxy() 280 found = strstr(no_proxy, server); in use_proxy() 282 && ((found != no_proxy in use_proxy() 289 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 | 1062 const char *proxy, const char *no_proxy, in OSSL_HTTP_open() 1081 if (proxy != NULL || no_proxy != NULL) { in OSSL_HTTP_open() 1095 proxy = OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl); in OSSL_HTTP_open() 1254 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy, in OSSL_HTTP_get() argument 1285 rctx = OSSL_HTTP_open(host, port, proxy, no_proxy, in OSSL_HTTP_get() 1346 const char *proxy, const char *no_proxy, in OSSL_HTTP_transfer() argument 1358 rctx = OSSL_HTTP_open(server, port, proxy, no_proxy, in OSSL_HTTP_transfer() 1061 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
|
| /freebsd/crypto/openssl/include/openssl/ |
| H A D | http.h | 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,
|
| /freebsd/crypto/openssl/test/recipes/80-test_cmp_http_data/ |
| H A D | test_connection.csv | 1 expected,description, -section,val, -server,val, -proxy,val, -no_proxy,val, -tls_used,noarg, -path,… 19 …section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,127.0.0.1:x*/8888, -no_proxy,nonmatch.com,BLAN… 20 … -section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,127.0.0.1:65536, -no_proxy,nonmatch.com,BLAN… 21 0,proxy default port, -section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,127.0.0.1, -no_proxy,non… 22 0,proxy missing argument, -section,, -server,_SERVER_HOST:_SERVER_PORT, -proxy,, -no_proxy,nonmatch…
|
| /freebsd/crypto/openssl/test/recipes/ |
| H A D | 80-test_cmp_http.t | 52 my $no_proxy = $ENV{no_proxy} // $ENV{NO_PROXY}; 280 my $noproxy = $no_proxy; 289 next LOOP if $no_proxy && ($noproxy =~ $server_plain);
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | OSSL_HTTP_parse_url.pod | 15 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>
|
| H A D | OSSL_HTTP_transfer.pod | 22 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, 74 it is an error to provide non-NULL I<proxy> or I<no_proxy> arguments, 77 HTTP(S) proxy to use (unless overridden by "no_proxy" settings). 88 is found in the optional list I<no_proxy> of proxy hostnames or IP addresses 90 default is the environment variable C<no_proxy> if set, else C<NO_PROXY>). 239 C<http_proxy>, C<HTTP_PROXY>, C<https_proxy>, C<HTTPS_PROXY>, C<no_proxy>, and
|
| H A D | OSSL_CMP_CTX_new.pod | 394 the given CMP server unless overruled by any "no_proxy" settings (see below). 407 Defaults to the environment variable C<no_proxy> if set, else C<NO_PROXY>.
|
| /freebsd/crypto/openssl/apps/include/ |
| H A D | 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,
|
| /freebsd/crypto/openssl/crypto/cmp/ |
| H A D | cmp_http.c | 94 ctx->proxy, ctx->no_proxy, in OSSL_CMP_MSG_http_perform()
|
| H A D | cmp_ctx.c | 208 OPENSSL_free(ctx->no_proxy); in OSSL_CMP_CTX_free() 831 DEFINE_OSSL_CMP_CTX_set1(no_proxy, char) in DEFINE_set1_ASN1_OCTET_STRING()
|
| H A D | cmp_local.h | 48 char *no_proxy; member
|
| /freebsd/lib/libfetch/ |
| H A D | common.c | 1749 const char *no_proxy, *p, *q; in fetch_no_proxy_match() local 1752 if ((no_proxy = getenv("NO_PROXY")) == NULL && in fetch_no_proxy_match() 1753 (no_proxy = getenv("no_proxy")) == NULL) in fetch_no_proxy_match() 1757 if (strcmp(no_proxy, "*") == 0) in fetch_no_proxy_match() 1761 p = no_proxy; in fetch_no_proxy_match()
|
| /freebsd/contrib/tnftp/src/ |
| H A D | fetch.c | 616 char *pport, *no_proxy; in fetch_url() local 622 no_proxy = getoptionvalue("no_proxy"); in fetch_url() 623 if (! EMPTYSTRING(no_proxy)) { in fetch_url() 628 np_iter = np_copy = ftp_strdup(no_proxy); in fetch_url()
|
| /freebsd/crypto/openssl/doc/man1/ |
| H A D | openssl-ocsp.pod.in | 35 [B<-no_proxy> I<addresses>] 193 The HTTP(S) proxy server to use for reaching the OCSP server unless B<-no_proxy> 202 =item B<-no_proxy> I<addresses> 207 Default is from the environment variable C<no_proxy> if set, else C<NO_PROXY>.
|
| H A D | openssl-s_server.pod.in | 80 [B<-no_proxy> I<addresses>] 505 The HTTP(S) proxy server to use for reaching the OCSP server unless B<-no_proxy> 514 =item B<-no_proxy> I<addresses> 519 Default is from the environment variable C<no_proxy> if set, else C<NO_PROXY>.
|
| H A D | openssl-cmp.pod.in | 58 [B<-no_proxy> I<addresses>] 544 The HTTP(S) proxy server to use for reaching the CMP server unless B<-no_proxy> 555 =item B<-no_proxy> I<addresses> 560 Default is from the environment variable C<no_proxy> if set, else C<NO_PROXY>.
|
| /freebsd/crypto/openssl/apps/ |
| H A D | s_server.c | 462 char *proxy, *no_proxy; 482 char *proxy = NULL, *no_proxy = NULL; in get_ocsp_resp_from_responder() 522 no_proxy = srctx->no_proxy; in get_ocsp_resp_from_responder() 566 *resp = process_responder(req, host, port, path, proxy, no_proxy, in get_ocsp_resp_from_responder() 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(); in s_server_main() 461 char *proxy, *no_proxy; global() member 481 char *proxy = NULL, *no_proxy = NULL; get_ocsp_resp_from_responder() local
|
| H A D | 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, 1240 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
|
| /freebsd/crypto/openssl/apps/lib/ |
| H A D | apps.c | 2600 const char *no_proxy, SSL_CTX *ssl_ctx, in app_http_get_asn1() 2634 OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl) != NULL; in app_http_get_asn1() 2637 mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */, in app_http_get_asn1() 2652 const char *no_proxy, SSL_CTX *ssl_ctx, in app_http_post_asn1() 2670 OSSL_HTTP_adapt_proxy(proxy, no_proxy, host, use_ssl) != NULL; in app_http_post_asn1() 2674 proxy, no_proxy, NULL /* bio */, NULL /* rbio */, in app_http_post_asn1() 2601 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 2654 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
|
| /freebsd/crypto/openssl/test/ |
| H A D | cmp_ctx_test.c | 759 DEFINE_SET_TEST(OSSL_CMP, CTX, 1, 1, no_proxy, char) in DEFINE_SET_CB_TEST()
|
| /freebsd/contrib/tnftp/ |
| H A D | ChangeLog | 822 - If no_proxy condition is true && urltype == FTP_URL_T,
|
| /freebsd/crypto/openssl/ |
| H A D | NEWS.md | 85 * Fix Out-of-bounds read in HTTP client no_proxy handling.
|
| H A D | CHANGES.md | 303 * Fix Out-of-bounds read in HTTP client no_proxy handling 306 may trigger an out-of-bounds read if the "no_proxy" environment variable is
|