Mod Cplusplus CVS committal
Author : gr84b8
Project : mod_cplusplus
Module : include
Dir : mod_cplusplus/include
Modified Files:
apache_filters.h mod_cplusplus.h
Log Message:
fix to match apache filter changes
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/include/apache_filters.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- apache_filters.h 22 Oct 2001 00:13:42 -0000 1.4
+++ apache_filters.h 7 Mar 2002 20:14:06 -0000 1.5
@@ -8,12 +8,14 @@
virtual apr_status_t connection_input_filter(ap_filter_t *f,
apr_bucket_brigade *b,
ap_input_mode_t eMode,
- apr_off_t *readbytes)
+ apr_read_type_e eBlock,
+ apr_off_t readbytes)
{ return DECLINED; }
virtual apr_status_t request_input_filter(ap_filter_t *f,
apr_bucket_brigade *b,
ap_input_mode_t eMode,
- apr_off_t *readbytes)
+ apr_read_type_e eBlock,
+ apr_off_t readbytes)
{ return DECLINED; }
};
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/include/mod_cplusplus.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- mod_cplusplus.h 22 Oct 2001 00:13:42 -0000 1.10
+++ mod_cplusplus.h 7 Mar 2002 20:14:06 -0000 1.11
@@ -51,14 +51,15 @@
extern apr_status_t cpp_call_input_filter(ap_filter_t *f,
apr_bucket_brigade *b,
ap_input_mode_t eMode,
- apr_off_t *readbytes);
+ apr_read_type_e eBlock,
+ apr_off_t readbytes);
extern int cpp_call_output_filter(ap_filter_t *f,
apr_bucket_brigade *b);
extern void cpp_insert_request_filters(request_rec *r);
- extern int cpp_insert_connection_filters(conn_rec *c);
+ extern int cpp_insert_connection_filters(conn_rec *c, void *csd);
extern char *load_cpp_module(cpp_server_rec *server_rec,
const char *name, const char *path);
extern int cpp_call_process_connection(conn_rec *c);
|