Mailing List Archive

cvs commit: apache-2.0/src/include ap_buckets.h
rbb 00/08/24 08:04:34

Modified: src/ap Makefile.in
src/include ap_buckets.h
Log:
Fix the building of the pipe buckets. Somehow between running my last test
compile and my commit, I blew away the definition of the pipe bucket type.

Revision Changes Path
1.9 +1 -1 apache-2.0/src/ap/Makefile.in

Index: Makefile.in
===================================================================
RCS file: /home/cvs/apache-2.0/src/ap/Makefile.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Makefile.in 2000/08/24 11:54:27 1.8
+++ Makefile.in 2000/08/24 15:04:29 1.9
@@ -2,6 +2,6 @@
LTLIBRARY_NAME = libap.la
LTLIBRARY_SOURCES = ap_cache.c ap_base64.c ap_sha1.c ap_hooks.c ap_buckets.c \
ap_buckets_eos.c ap_buckets_simple.c ap_buckets_refcount.c \
- ap_buckets_heap.c ap_buckets_mmap.c
+ ap_buckets_heap.c ap_buckets_mmap.c ap_buckets_pipe.c

include $(top_srcdir)/build/ltlib.mk



1.16 +11 -0 apache-2.0/src/include/ap_buckets.h

Index: ap_buckets.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/ap_buckets.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ap_buckets.h 2000/08/24 04:17:45 1.15
+++ ap_buckets.h 2000/08/24 15:04:32 1.16
@@ -294,6 +294,17 @@
apr_mmap_t *mmap;
};

+/* ***** Pipe buckets ***** */
+
+
+typedef struct ap_bucket_pipe ap_bucket_pipe;
+
+/**
+ * A bucket referring to a pipe.
+ */
+struct ap_bucket_pipe {
+ apr_file_t *thepipe;
+};

/* ***** Bucket Brigade Functions ***** */