dougm 01/02/27 21:46:54
Modified: src/modules/perl modperl_types.h
Log:
adjust to IOBUFSIZE -> AP_IOBUFSIZE rename
Revision Changes Path
1.21 +7 -1 modperl-2.0/src/modules/perl/modperl_types.h
Index: modperl_types.h
===================================================================
RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_types.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- modperl_types.h 2001/02/08 19:20:40 1.20
+++ modperl_types.h 2001/02/28 05:46:53 1.21
@@ -1,6 +1,12 @@
#ifndef MODPERL_TYPES_H
#define MODPERL_TYPES_H
+#ifdef AP_IOBUFSIZE
+# define MP_IOBUFSIZE AP_IOBUFSIZE
+#else
+# define MP_IOBUFSIZE 8192
+#endif
+
/* aliases */
typedef apr_array_header_t MpAV;
@@ -148,7 +154,7 @@
typedef struct {
int outcnt;
- char outbuf[IOBUFSIZE];
+ char outbuf[MP_IOBUFSIZE];
apr_pool_t *pool;
ap_filter_t *filters;
} modperl_wbucket_t;