Mod Cplusplus CVS committal
Author : johnksterling
Project : mod_cplusplus
Module : include
Dir : mod_cplusplus/include
Modified Files:
apache_handler.h mod_cplusplus.h
Log Message:
add a new parameter passing mechanism to filters that is per server, not per dir
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/include/apache_handler.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- apache_handler.h 19 Jun 2002 14:11:07 -0000 1.10
+++ apache_handler.h 14 Dec 2004 13:17:04 -0000 1.11
@@ -22,6 +22,7 @@
{
protected:
char *get_cpp_var(ApacheRequestRec *r, const char *name);
+ char *get_server_var(ApacheServerRec *r, const char *name);
};
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/include/mod_cplusplus.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- mod_cplusplus.h 19 Jun 2002 14:11:07 -0000 1.13
+++ mod_cplusplus.h 14 Dec 2004 13:17:04 -0000 1.14
@@ -20,6 +20,7 @@
char **protocol_handlers;
char **input_filters;
char **output_filters;
+ apr_hash_t *var_hash;
} cpp_server_rec;
typedef struct {
|