/[mod_czs]/mod_noczs.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /mod_noczs.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Wed Aug 9 21:10:43 2000 UTC (23 years, 9 months ago) by dpavlin
Branch: MAIN
File MIME type: text/plain
special module which just removes /czs from path (oh, well. mod_czs does
that for all modules on apache 1.3.12, but on 1.3.9 it doesn't)

1 dpavlin 1.1 /*
2     ** mod_noczs.c
3     */
4    
5     #include "httpd.h"
6     #include "http_config.h"
7     #include "http_protocol.h"
8     #include "ap_config.h"
9     #include "translate.c"
10    
11     int do_czs;
12    
13     /* Dispatch list for API hooks */
14     module MODULE_VAR_EXPORT noczs_module = {
15     STANDARD_MODULE_STUFF,
16     NULL, /* module initializer */
17     NULL, /* create per-dir config structures */
18     NULL, /* merge per-dir config structures */
19     NULL, /* create per-server config structures */
20     NULL, /* merge per-server config structures */
21     NULL, /* table of config file commands */
22     NULL, /* [#8] MIME-typed-dispatched handlers */
23     translate_path, /* [#1] URI to filename translation */
24     NULL, /* [#4] validate user id from request */
25     NULL, /* [#5] check if the user is ok _here_ */
26     NULL, /* [#3] check access by host address */
27     NULL, /* [#6] determine MIME type */
28     NULL, /* [#7] pre-run fixups */
29     NULL, /* [#9] log a transaction */
30     NULL, /* [#2] header parser */
31     NULL, /* child_init */
32     NULL, /* child_exit */
33     NULL /* [#0] post read-request */
34     #ifdef EAPI
35     ,NULL, /* EAPI: add_module */
36     NULL, /* EAPI: remove_module */
37     NULL, /* EAPI: rewrite_command */
38     NULL /* EAPI: new_connection */
39     #endif
40     };
41    

  ViewVC Help
Powered by ViewVC 1.1.26