[Modcplusplus-devel] (gr84b8) mod_cplusplus/src mod_cplusplus.c
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2002-03-29 23:12:59
|
Mod Cplusplus CVS committal
Author : gr84b8
Project : mod_cplusplus
Module : src
Dir : mod_cplusplus/src
Modified Files:
mod_cplusplus.c
Log Message:
update to synch up with filter changes
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/mod_cplusplus.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- mod_cplusplus.c 4 Jun 2001 00:40:35 -0000 1.14
+++ mod_cplusplus.c 29 Mar 2002 23:12:58 -0000 1.15
@@ -145,7 +145,7 @@
}
}
*cur_ptr = name;
- ap_register_input_filter(name, cpp_call_input_filter, AP_FTYPE_CONTENT);
+ ap_register_input_filter(name, cpp_call_input_filter, AP_FTYPE_CONNECTION);
return NULL;
}
@@ -165,7 +165,7 @@
}
}
*cur_ptr = name;
- ap_register_output_filter(name, cpp_call_output_filter, AP_FTYPE_CONTENT);
+ ap_register_output_filter(name, cpp_call_output_filter, AP_FTYPE_CONNECTION);
return NULL;
}
@@ -184,7 +184,7 @@
}
}
*cur_ptr = name;
- ap_register_input_filter(name, cpp_call_input_filter, AP_FTYPE_CONTENT);
+ ap_register_input_filter(name, cpp_call_input_filter, AP_FTYPE_RESOURCE);
return NULL;
}
@@ -202,7 +202,7 @@
}
}
*cur_ptr = name;
- ap_register_output_filter(name, cpp_call_output_filter, AP_FTYPE_CONTENT);
+ ap_register_output_filter(name, cpp_call_output_filter, AP_FTYPE_RESOURCE);
return NULL;
}
|