Searched defs:auth_line (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/aaa/ |
H A D | mod_auth_basic.c | 251 const char *auth_line; local 256 auth_line = apr_table_get(r->headers_in, (PROXYREQ_PROXY == r->proxyreq) 260 if (!auth_line) { 265 if (strcasecmp(ap_getword(r->pool, &auth_line, ' '), "Basic")) { 274 while (apr_isspace(*auth_line)) { 275 auth_line++; 278 decoded_line = apr_palloc(r->pool, apr_base64_decode_len(auth_line) + 1); 279 length = apr_base64_decode(decoded_line, auth_line); 445 const char *auth_line, *user, *pass, *err; local 483 auth_line [all...] |
H A D | mod_auth_digest.c | 872 const char *auth_line; local 877 auth_line = apr_table_get(r->headers_in, 881 if (!auth_line) { 886 resp->scheme = ap_getword_white(r->pool, &auth_line); 892 l = strlen(auth_line); 897 while (auth_line[0] != '\0') { 901 while (apr_isspace(auth_line[0])) { 902 auth_line++; 905 while (auth_line[0] != '=' && auth_line[ [all...] |
/httpd/server/ |
H A D | protocol.c | 1402 const char *auth_line = apr_table_get(r->headers_in, local 1417 if (!auth_line) { 1422 if (strcasecmp(ap_getword(r->pool, &auth_line, ' '), "Basic")) { 1430 while (*auth_line == ' ' || *auth_line == '\t') { 1431 auth_line++; 1434 t = ap_pbase64decode(r->pool, auth_line);
|
/httpd/modules/ssl/ |
H A D | ssl_engine_kernel.c | 993 const char *auth_line, *username, *password; local 1019 if ((auth_line = apr_table_get(r->headers_in, "Authorization"))) { 1020 if (strcEQ(ap_getword(r->pool, &auth_line, ' '), "Basic")) { 1021 while ((*auth_line == ' ') || (*auth_line == '\t')) { 1022 auth_line++; 1025 auth_line = ap_pbase64decode(r->pool, auth_line); 1026 username = ap_getword_nulls(r->pool, &auth_line, ':'); 1027 password = auth_line; [all...] |
Completed in 22 milliseconds