MCPcopy Create free account
hub / github.com/apache/httpd / note_cookie_auth_failure

Function note_cookie_auth_failure

modules/aaa/mod_auth_form.c:409–417  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

407module AP_MODULE_DECLARE_DATA auth_form_module;
408
409static void note_cookie_auth_failure(request_rec * r)
410{
411 auth_form_config_rec *conf = ap_get_module_config(r->per_dir_config,
412 &auth_form_module);
413
414 if (conf->location && ap_strchr_c(conf->location, ':')) {
415 apr_table_setn(r->err_headers_out, "Location", conf->location);
416 }
417}
418
419static int hook_note_cookie_auth_failure(request_rec * r,
420 const char *auth_type)

Callers 2

check_authnFunction · 0.85

Calls 2

ap_get_module_configFunction · 0.85
ap_strchr_cFunction · 0.85

Tested by

no test coverage detected