/openssl-master/crypto/http/ |
A D | http_client.c | 52 int use_ssl; /* Use HTTPS */ member 339 void *arg, int use_ssl, in http_req_ctx_new() argument 351 rctx->use_ssl = use_ssl; in http_req_ctx_new() 792 int use_ssl, in http_new_bio() argument 809 port = use_ssl ? OSSL_HTTPS_PORT : OSSL_HTTP_PORT; in http_new_bio() 864 int use_ssl, BIO *bio, BIO *rbio, in OSSL_HTTP_open() argument 871 if (use_ssl && bio_update_fn == NULL) { in OSSL_HTTP_open() 897 port = use_ssl ? OSSL_HTTPS_PORT : OSSL_HTTP_PORT; in OSSL_HTTP_open() 961 use_http_proxy = rctx->proxy != NULL && !rctx->use_ssl; in OSSL_HTTP_set1_request() 1069 int use_ssl; in OSSL_HTTP_get() local [all …]
|
A D | http_lib.c | 271 const char *server, int use_ssl) in OSSL_HTTP_adapt_proxy() argument 278 proxy = getenv(use_ssl ? "https_proxy" : "http_proxy"); in OSSL_HTTP_adapt_proxy() 280 proxy = getenv(use_ssl ? OPENSSL_HTTP_PROXY : in OSSL_HTTP_adapt_proxy()
|
/openssl-master/include/openssl/ |
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);
|
/openssl-master/doc/man3/ |
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.
|
A D | OSSL_HTTP_transfer.pod | 23 int use_ssl, BIO *bio, BIO *rbio, 43 const char *path, int use_ssl, 75 If I<use_ssl> != 0 it defaults to C<https_proxy> if set, else C<HTTPS_PROXY>. 88 If I<use_ssl> is nonzero a TLS connection is requested 91 The parameter I<bio_update_fn>, which is optional if I<use_ssl> is 0,
|
/openssl-master/apps/ |
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() 732 use_ssl, headers, req_timeout); in ocsp_main() 1225 int use_ssl, STACK_OF(CONF_VALUE) *headers, in process_responder() argument 1231 if (use_ssl == 1) { in process_responder()
|
A D | s_server.c | 453 int use_ssl; member 473 int use_ssl; in get_ocsp_resp_from_responder() local 488 if (!OSSL_HTTP_parse_url(sk_OPENSSL_STRING_value(aia, 0), &use_ssl, in get_ocsp_resp_from_responder() 505 use_ssl = srctx->use_ssl; in get_ocsp_resp_from_responder() 541 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()
|
/openssl-master/apps/include/ |
A D | apps.h | 186 int use_ssl, STACK_OF(CONF_VALUE) *headers,
|
/openssl-master/apps/lib/ |
A D | apps.c | 2497 int use_ssl; in app_http_get_asn1() local 2506 if (!OSSL_HTTP_parse_url(url, &use_ssl, NULL /* userinfo */, &server, &port, in app_http_get_asn1() 2509 if (use_ssl && ssl_ctx == NULL) { in app_http_get_asn1()
|
/openssl-master/test/ |
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
|