Restore support for the AUTH_HANDLED return code in AUTHN providers,

like in 2.2, which allows authn provider to return their own status
in r->status (custom error code, or return a redirect)



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1499351 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Covener
2013-07-03 12:13:50 +00:00
parent e4e1533f6a
commit 7fbc93eac7
4 changed files with 10 additions and 2 deletions

View File

@ -66,7 +66,8 @@ typedef enum {
AUTH_GRANTED,
AUTH_USER_FOUND,
AUTH_USER_NOT_FOUND,
AUTH_GENERAL_ERROR
AUTH_GENERAL_ERROR,
AUTH_HANDLED
} authn_status;
typedef enum {