Lines Matching defs:auth_line
251 const char *auth_line;
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;
483 auth_line = apr_pstrcat(r->pool, "Basic ",
488 apr_table_setn(r->headers_in, "Authorization", auth_line);
492 auth_line);