Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 53688 invoked by uid 500); 2 Nov 2000 12:27:19 -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 53659 invoked by uid 500); 2 Nov 2000 12:27:14 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 2 Nov 2000 12:27:11 -0000 Message-ID: <20001102122711.53619.qmail@locus.apache.org> From: trawick@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/main http_core.c trawick 00/11/02 04:27:08 Modified: src/main http_core.c Log: In writev_it_all(), tell the caller how many bytes were sent. Revision Changes Path 1.192 +1 -0 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.191 retrieving revision 1.192 diff -u -r1.191 -r1.192 --- http_core.c 2000/10/31 12:30:21 1.191 +++ http_core.c 2000/11/02 12:27:05 1.192 @@ -2579,6 +2579,7 @@ bytes_written += n; if (rv != APR_SUCCESS) return rv; + *nbytes += n; /* If the write did not complete, adjust the iovecs and issue * apr_sendv again