[Modcplusplus-devel] (gr84b8) mod_cplusplus/src apache_filters.cpp
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2001-10-22 00:14:13
|
Mod Cplusplus CVS committal
Author : gr84b8
Project : mod_cplusplus
Module : src
Dir : mod_cplusplus/src
Modified Files:
apache_filters.cpp
Log Message:
update for some apache name changes
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/apache_filters.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- apache_filters.cpp 2001/05/30 04:49:30 1.5
+++ apache_filters.cpp 2001/10/22 00:13:42 1.6
@@ -2,9 +2,9 @@
extern "C" {
apr_status_t cpp_call_input_filter(ap_filter_t *f,
- apr_bucket_brigade *b,
- ap_input_mode_t eMode,
- apr_size_t *readbytes)
+ apr_bucket_brigade *b,
+ ap_input_mode_t eMode,
+ apr_off_t *readbytes)
{
ApacheInputFilter *target = (ApacheInputFilter *)f->ctx;
return f->r ? target->request_input_filter(f, b, eMode, readbytes)
@@ -12,7 +12,7 @@
}
int cpp_call_output_filter(ap_filter_t *f,
- apr_bucket_brigade *b)
+ apr_bucket_brigade *b)
{
ApacheOutputFilter *target = (ApacheOutputFilter *)f->ctx;
return f->r ? target->request_output_filter(f, b)
|