Added auth_cmds.c processing for apache1 and 2. Still need to add custom
[mod_auth_kerb.cvs/.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,
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         { NULL }
21 };