Added auth_cmds.c processing for apache1 and 2. Still need to add custom
[mod_auth_kerb.git] / apache2 / auth_cmds.c
1 static const command_rec kerb_auth_cmds[] = {
2         AP_INIT_TAKE1(
3                 "AuthKerberos",
4                 kerb_set_type_slot,
5                 (void*)APR_XtOffsetOf(kerb_auth_config, krb_auth_type),
6                 OR_AUTHCFG,
7                 "Permit Kerberos auth without AuthType requirement."
8         ),
9
10         AP_INIT_TAKE1(
11                 "KrbFailStatus",
12                 kerb_set_fail_slot,
13                 (void*)APR_XtOffsetOf(kerb_auth_config, krb_fail_status),
14                 OR_AUTHCFG,
15                 "If auth fails, return status set here."
16         ),
17
18         { NULL }
19 };