| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/http/ |
| H A D | http_client.c | 52 int use_ssl; /* Use HTTPS */ member 373 void *arg, int use_ssl, in http_req_ctx_new() argument 385 rctx->use_ssl = use_ssl; in http_req_ctx_new() 857 int use_ssl, in http_new_bio() argument 874 port = use_ssl ? OSSL_HTTPS_PORT : OSSL_HTTP_PORT; in http_new_bio() 929 int use_ssl, BIO *bio, BIO *rbio, in OSSL_HTTP_open() argument 936 if (use_ssl && bio_update_fn == NULL) { in OSSL_HTTP_open() 962 port = use_ssl ? OSSL_HTTPS_PORT : OSSL_HTTP_PORT; in OSSL_HTTP_open() 963 proxy = OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl); in OSSL_HTTP_open() 969 cbio = http_new_bio(server, port, use_ssl, proxy_host, proxy_port); in OSSL_HTTP_open() [all …]
|
| H A D | http_lib.c | 279 const char *server, int use_ssl) in OSSL_HTTP_adapt_proxy() argument 286 proxy = ossl_safe_getenv(use_ssl ? "https_proxy" : "http_proxy"); in OSSL_HTTP_adapt_proxy() 288 proxy = ossl_safe_getenv(use_ssl ? OPENSSL_HTTP_PROXY : OPENSSL_HTTPS_PROXY); in OSSL_HTTP_adapt_proxy()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/ |
| H A D | http.h | 66 int use_ssl, BIO *bio, BIO *rbio, 86 const char *path, int use_ssl, 104 const char *server, int use_ssl);
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | OSSL_HTTP_parse_url.pod | 16 const char *server, int use_ssl); 37 I<server>, I<use_ssl>, and the applicable environment variable, as follows. 39 environment variable, or from C<https_proxy> if I<use_ssl> is nonzero. 42 environment variable, or from C<HTTPS_PROXY> if I<use_ssl> is nonzero.
|
| H A D | OSSL_HTTP_transfer.pod | 23 int use_ssl, BIO *bio, BIO *rbio, 43 const char *path, int use_ssl, 78 If I<use_ssl> != 0 it defaults to C<https_proxy> if set, else C<HTTPS_PROXY>. 91 If I<use_ssl> is nonzero a TLS connection is requested 94 The parameter I<bio_update_fn>, which is optional if I<use_ssl> is 0, 106 I<detail> being 1 if I<use_ssl> is nonzero (i.e., HTTPS is requested), else 0.
|
| /netbsd-src/external/bsd/libevent/dist/sample/ |
| H A D | le-proxy.c | 217 int use_ssl = 0; in main() local 232 use_ssl = 1; in main() 270 if (use_ssl) { in main()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/apps/ |
| H A D | ocsp.c | 251 int accept_count = -1, add_nonce = 1, noverify = 0, use_ssl = -1; in ocsp_main() local 289 if (!OSSL_HTTP_parse_url(opt_arg(), &use_ssl, NULL /* userinfo */, in ocsp_main() 734 use_ssl, headers, req_timeout); in ocsp_main() 1234 int use_ssl, STACK_OF(CONF_VALUE) *headers, in process_responder() argument 1240 if (use_ssl == 1) { in process_responder()
|
| H A D | s_server.c | 454 int use_ssl; member 474 int use_ssl; in get_ocsp_resp_from_responder() local 489 if (!OSSL_HTTP_parse_url(sk_OPENSSL_STRING_value(aia, 0), &use_ssl, in get_ocsp_resp_from_responder() 506 use_ssl = srctx->use_ssl; in get_ocsp_resp_from_responder() 542 use_ssl, NULL /* headers */, srctx->timeout); in get_ocsp_resp_from_responder() 1377 if (!OSSL_HTTP_parse_url(opt_arg(), &tlscstatp.use_ssl, NULL, in s_server_main()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/apps/ |
| H A D | ocsp.c | 256 int accept_count = -1, add_nonce = 1, noverify = 0, use_ssl = -1; in ocsp_main() local 298 if (!OCSP_parse_url(opt_arg(), &host, &port, &path, &use_ssl)) { in ocsp_main() 690 port, use_ssl, headers, req_timeout); in ocsp_main() 1588 const char *port, int use_ssl, in process_responder() argument 1603 if (use_ssl == 1) { in process_responder()
|
| H A D | s_server.c | 504 int use_ssl; member 523 int use_ssl; in get_ocsp_resp_from_responder() local 539 &host, &port, &path, &use_ssl)) { in get_ocsp_resp_from_responder() 555 use_ssl = srctx->use_ssl; in get_ocsp_resp_from_responder() 588 *resp = process_responder(req, host, path, port, use_ssl, NULL, in get_ocsp_resp_from_responder() 1361 &tlscstatp.path, &tlscstatp.use_ssl)) { in s_server_main()
|
| H A D | apps.h | 494 const char *port, int use_ssl,
|
| H A D | apps.c | 603 int use_ssl, rv = 0; in load_cert_crl_http() local 604 if (!OCSP_parse_url(url, &host, &port, &path, &use_ssl)) in load_cert_crl_http() 606 if (use_ssl) { in load_cert_crl_http()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/apps/lib/ |
| H A D | apps.c | 2548 int use_ssl; in app_http_get_asn1() local 2557 if (!OSSL_HTTP_parse_url(url, &use_ssl, NULL /* userinfo */, &server, &port, in app_http_get_asn1() 2560 if (use_ssl && ssl_ctx == NULL) { in app_http_get_asn1() 2565 if (!use_ssl && ssl_ctx != NULL) { in app_http_get_asn1() 2574 OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl) != NULL; in app_http_get_asn1() 2600 int use_ssl = ssl_ctx != NULL; in app_http_post_asn1() local 2611 OSSL_HTTP_adapt_proxy(proxy, no_proxy, host, use_ssl) != NULL; in app_http_post_asn1() 2614 rsp = OSSL_HTTP_transfer(NULL, host, port, path, use_ssl, in app_http_post_asn1()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/apps/include/ |
| H A D | apps.h | 187 int use_ssl, STACK_OF(CONF_VALUE) *headers,
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/etc/c/ |
| H A D | curl.d | 1061 use_ssl = 119, enumerator
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/etc/c/ |
| H A D | curl.d | 1054 use_ssl = 119, enumerator
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/ |
| H A D | cmp_ctx_test.c | 309 static BIO *test_http_cb(BIO *bio, void *arg, int use_ssl, int detail) in test_http_cb() argument
|
| /netbsd-src/external/bsd/unbound/dist/services/ |
| H A D | outside_network.c | 520 socklen_t addrlen, int use_ssl) 534 if(use_ssl)
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/net/ |
| H A D | curl.d | 3849 p.curl.set(CurlOption.use_ssl, CurlUseSSL.all); in url()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/net/ |
| H A D | curl.d | 3833 p.curl.set(CurlOption.use_ssl, CurlUseSSL.all); in url()
|