Added EAPI check.
[mod_auth_kerb.cvs/.git] / apache1 / module.c
1 module MODULE_VAR_EXPORT kerb_auth_module = {
2         STANDARD_MODULE_STUFF,
3         NULL,                           /*      module initializer            */
4         kerb_dir_config,                /*      per-directory config creator  */
5         NULL,                           /*      per-directory config merger   */
6         NULL,                           /*      per-server    config creator  */
7         NULL,                           /*      per-server    config merger   */
8         kerb_auth_cmds,                 /*      command table                 */
9         NULL,                           /* [ 9] content handlers              */
10         NULL,                           /* [ 2] URI-to-filename translation   */
11         kerb_authenticate_user,         /* [ 5] check/validate user_id        */
12         NULL,                           /* [ 6] check user_id is valid *here* */
13         NULL,                           /* [ 4] check access by host address  */
14         NULL,                           /* [ 7] MIME type checker/setter      */
15         NULL,                           /* [ 8] fixups                        */
16         NULL,                           /* [10] logger                        */
17         NULL,                           /* [ 3] header parser                 */
18         NULL,                           /*      process initialization        */
19         NULL,                           /*      process exit/cleanup          */
20         NULL                            /* [ 1] post read_request handling    */
21 #ifdef EAPI
22         ,                               /*            EAPI Additions          */
23         NULL,                           /* EAPI add module                    */
24         NULL,                           /* EAPI remove module                 */
25         NULL,                           /* EAPI rewrite command               */
26         NULL                            /* EAPI new connection                */
27 #endif /* EAPI */
28 };