Searched refs:auth (Results 1 - 8 of 8) sorted by relevance
/httpd/modules/ssl/ |
H A D | ssl_engine_config.c | 125 mctx->auth.ca_cert_path = NULL; 126 mctx->auth.ca_cert_file = NULL; 127 mctx->auth.cipher_suite = NULL; 128 mctx->auth.verify_depth = UNSET; 129 mctx->auth.verify_mode = SSL_CVERIFY_UNSET; 277 cfgMergeString(auth.ca_cert_path); 278 cfgMergeString(auth.ca_cert_file); 279 cfgMergeString(auth.cipher_suite); 280 cfgMergeInt(auth.verify_depth); 281 cfgMerge(auth [all...] |
H A D | ssl_engine_init.c | 671 if (mctx->auth.verify_mode == SSL_CVERIFY_UNSET) { 672 mctx->auth.verify_mode = SSL_CVERIFY_NONE; 675 if (mctx->auth.verify_depth == UNSET) { 676 mctx->auth.verify_depth = 1; 682 if (mctx->auth.verify_mode == SSL_CVERIFY_REQUIRE) { 686 if ((mctx->auth.verify_mode == SSL_CVERIFY_OPTIONAL) || 687 (mctx->auth.verify_mode == SSL_CVERIFY_OPTIONAL_NO_CA)) 697 if (mctx->auth.ca_cert_file || mctx->auth.ca_cert_path) { 702 mctx->auth [all...] |
H A D | ssl_engine_kernel.c | 435 if ((dc->szCipherSuite || sc->server->auth.cipher_suite) && 438 sc->server->auth.cipher_suite)) { 530 (mySrvConfig(handshakeserver))->server->auth.verify_depth; 533 dc->nVerifyDepth : sc->server->auth.verify_depth; 556 (sc->server->auth.verify_mode != SSL_CVERIFY_UNSET)) { 563 (sc->server->auth.verify_mode == SSL_CVERIFY_REQUIRE)) { 569 (sc->server->auth.verify_mode == SSL_CVERIFY_OPTIONAL) || 570 (sc->server->auth.verify_mode == SSL_CVERIFY_OPTIONAL_NO_CA)) 623 (sc1->server->auth.f && \ 624 (!sc2->server->auth [all...] |
H A D | ssl_private.h | 628 modssl_auth_ctx_t auth; member in struct:__anon343
|
H A D | ssl_engine_io.c | 1310 (sc->server->auth.verify_mode == SSL_CVERIFY_OPTIONAL_NO_CA)) 1362 if ((sc->server->auth.verify_mode == SSL_CVERIFY_REQUIRE) &&
|
/httpd/support/ |
H A D | ab.c | 43 ** - Added Cookie, Arbitrary header and auth support. <dirkx@webweaving.org>, April 1999 289 *auth, /* optional (basic/uuencoded) auhentication */ variable 1733 cookie, auth, hdrs); 1746 cookie, auth, 2139 auth = ""; 2264 auth = apr_pstrcat(cntxt, auth, "Authorization: Basic ", tmp, 2279 auth = apr_pstrcat(cntxt, auth, "Proxy-Authorization: Basic ",
|
/httpd/modules/cache/ |
H A D | mod_cache.c | 86 const char *auth; local 126 auth = apr_table_get(r->headers_in, "Authorization"); 131 if (auth) {
|
/httpd/modules/dav/main/ |
H A D | mod_dav.c | 2689 const char *auth = apr_table_get(lookup.rnew->err_headers_out, local 2691 if (lookup.rnew->status == HTTP_UNAUTHORIZED && auth != NULL) { 2695 apr_pstrdup(r->pool, auth));
|
Completed in 72 milliseconds