Changeset 215 in Main for trunk/Module
- Timestamp:
- Oct 3, 2024, 4:24:43 AM (6 weeks ago)
- Location:
- trunk/Module
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Module/Makefile
r212 r215 14 14 15 15 .c.$(OBJ): 16 $(CC) $(CFLAGS) - c -o $@ $<16 $(CC) $(CFLAGS) -I ../Server -c -o $@ $< 17 17 18 18 clean: 19 rm -f *.o *.so *.a *.dll *.dll19 rm -f *.o *.so *.a *.dll -
trunk/Module/mod_cgi.c
r41 r215 1 1 /* $Id$ */ 2 2 3 #include "../Server/tw_module.h"3 #include <tw_module.h> 4 4 5 5 #include <cm_string.h> -
trunk/Module/mod_example.c
r40 r215 2 2 /* This module will accept all directives, and always return 403 on the access. */ 3 3 4 #include "../Server/tw_module.h"4 #include <tw_module.h> 5 5 6 6 int mod_init(struct tw_config* config, struct tw_tool* tools) { -
trunk/Module/mod_proxy.c
r126 r215 1 1 /* $Id$ */ 2 2 3 #include "../Server/tw_module.h"3 #include <tw_module.h> 4 4 5 5 #include <cm_string.h>
Note:
See TracChangeset
for help on using the changeset viewer.