611dff641fc9ccb7e92ea7f98210a098f6fbd1de
[mod_auth_kerb.git] / apache1 / auth_cmds.c
1 command_rec kerb_auth_cmds[] = {
2         {
3                 "AuthKerberos",
4                 kerb_set_type_slot,
5                 (void*)XtOffsetOf(kerb_auth_config, krb_auth_type),
6                 OR_AUTHCFG,
7                 TAKE1,
8                 "Permit Kerberos auth without AuthType requirement."
9         },
10
11         {
12                 "KrbFailStatus",
13                 kerb_set_fail_slot_string,
14                 (void*)XtOffsetOf(kerb_auth_config, krb_fail_status),
15                 OR_AUTHCFG,
16                 TAKE1,
17                 "If auth fails, return status set here."
18         },
19
20         {
21                 "KrbAuthoritative",
22                 kerb_set_fail_slot_flag,
23                 (void*)XtOffsetOf(kerb_auth_config, krb_fail_status),
24                 OR_AUTHCFG,
25                 FLAG,
26                 "If auth fails, decline and pass on to lower modules."
27         },
28
29         { NULL }
30 };