From apache-cvs-return-3515-apmail-apache-cvs-archive=apache.org@apache.org Thu Nov 02 20:34:05 2000 Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 53675 invoked by uid 500); 2 Nov 2000 20:33:59 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 53632 invoked by uid 500); 2 Nov 2000 20:33:56 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 2 Nov 2000 20:33:54 -0000 Message-ID: <20001102203354.53531.qmail@locus.apache.org> From: rbb@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/main http_core.c rbb 00/11/02 12:33:51 Modified: src/main http_core.c Log: Fix the core_output_filter to work with FLUSH buckets. With this change, when the core sees a FLUSH bucket, we automatically send everything to the network. Revision Changes Path 1.193 +1 -1 apache-2.0/src/main/http_core.c Index: http_core.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/http_core.c,v retrieving revision 1.192 retrieving revision 1.193 diff -u -r1.192 -r1.193 --- http_core.c 2000/11/02 12:27:05 1.192 +++ http_core.c 2000/11/02 20:33:48 1.193 @@ -3394,7 +3394,7 @@ nbytes = 0; /* in case more points to another brigade */ more = NULL; AP_BRIGADE_FOREACH(e, b) { - if (AP_BUCKET_IS_EOS(e)) { + if (AP_BUCKET_IS_EOS(e) || AP_BUCKET_IS_FLUSH(e)) { break; } else if (AP_BUCKET_IS_FILE(e)) {