stas 2004/07/02 16:20:47
Modified: todo bugs_mp
xs/Apache/RequestIO Apache__RequestIO.h
Log:
need to reimplement mpxs_Apache__RequestRec_GETC similar to read() w/o
using the deprecated client_block interface
Revision Changes Path
1.7 +4 -0 modperl-2.0/todo/bugs_mp
Index: bugs_mp
===================================================================
RCS file: /home/cvs/modperl-2.0/todo/bugs_mp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -u -r1.6 -r1.7
--- bugs_mp 2 Jul 2004 17:52:22 -0000 1.6
+++ bugs_mp 2 Jul 2004 23:20:47 -0000 1.7
@@ -104,3 +104,7 @@
Report:
http://marc.theaimsgroup.com/?l=apache-modperl-dev&m=106893251911930&w=2
Priority: Low
+
+* mpxs_Apache__RequestRec_GETC in Apache_RequestIO.h is out to be
+ reimplemented similar to read() w/o using the deprecated
+ client_block interface
1.52 +2 -0 modperl-2.0/xs/Apache/RequestIO/Apache__RequestIO.h
Index: Apache__RequestIO.h
===================================================================
RCS file: /home/cvs/modperl-2.0/xs/Apache/RequestIO/Apache__RequestIO.h,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -u -r1.51 -r1.52
--- Apache__RequestIO.h 2 Jul 2004 22:43:17 -0000 1.51
+++ Apache__RequestIO.h 2 Jul 2004 23:20:47 -0000 1.52
@@ -262,6 +262,8 @@
{
char c[1] = "\0";
+ /* XXX: reimplement similar to read() w/o using the deprecated
+ * client_block interface */
if (mpxs_setup_client_block(r) == APR_SUCCESS) {
if (mpxs_should_client_block(r)) {
if (ap_get_client_block(r, c, 1) == 1) {