Ryan - call me back --- 847-265-8130
I'll tell you where you did wrong :-)
> -----Original Message-----
> From: rbb@locus.apache.org [mailto:rbb@locus.apache.org]
> Sent: Friday, October 13, 2000 12:36 AM
> To: apache-2.0-cvs@apache.org
> Subject: cvs commit: apache-2.0/src/modules/standard mod_include.c
>
>
> rbb 00/10/12 22:35:58
>
> Modified: src CHANGES
> src/ap ap_buckets.c ap_buckets_eos.c
> ap_buckets_file.c
> ap_buckets_heap.c ap_buckets_mmap.c
> ap_buckets_pipe.c ap_buckets_simple.c
> ap_buckets_socket.c
> src/include ap_buckets.h
> src/main http_core.c http_protocol.c util_filter.c
> src/modules/experimental mod_charset_lite.c
> src/modules/standard mod_include.c
> Log:
> Remove all function pointers from the ap_bucket type.
> These function
> pointers are replaced with a global table that allows
> modules to register
> their bucket types. Those bucket types are then allowed to
> be used in
> the server processing. This also required removing all
> direct calls to
> those functions. The ap_bucket type has an index into an
> array, so in
> each ap_bucket_* function, we use that index to find the
> correct set of
> functions.
>
> Revision Changes Path
> 1.272 +5 -0 apache-2.0/src/CHANGES
>
> Index: CHANGES
> ===================================================================
> RCS file: /home/cvs/apache-2.0/src/CHANGES,v
> retrieving revision 1.271
> retrieving revision 1.272
> diff -u -r1.271 -r1.272
> --- CHANGES 2000/10/13 03:38:34 1.271
> +++ CHANGES 2000/10/13 05:35:52 1.272
> @@ -1,4 +1,9 @@
> Changes with Apache 2.0a8
> + *) Remove the function pointers from the ap_bucket type.
> They have been
> + replaced with a global table. Modules are allowed to
> register bucket
> + types and use then use those buckets.
> + [Ryan Bloom]
> +
> *) mod_cgid: In the handler, shut down the Unix socket
> (only for write)
> once we finish writing the request body to the cgi
> child process;
> otherwise, the client doesn't hit EOF on stdin.
> Small request bodies
>
|