Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 54969 invoked by uid 500); 17 Nov 2000 16:16:05 -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 54951 invoked by uid 500); 17 Nov 2000 16:16:04 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Delivered-To: apmail-httpd-docs-2.0-cvs@apache.org Date: 17 Nov 2000 16:16:03 -0000 Message-ID: <20001117161603.54942.qmail@locus.apache.org> From: gregames@locus.apache.org To: httpd-docs-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/lib/apr/include apr_network_io.h gregames 00/11/17 08:16:03 Modified: src/lib/apr/include apr_network_io.h Log: Make it clear that the len parm on apr_sendfile only applies to data from the file, not header/trailer bytes. Revision Changes Path 1.73 +1 -1 apache-2.0/src/lib/apr/include/apr_network_io.h Index: apr_network_io.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_network_io.h,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- apr_network_io.h 2000/11/17 03:45:01 1.72 +++ apr_network_io.h 2000/11/17 16:16:03 1.73 @@ -365,7 +365,7 @@ * @param file The open file from which to read * @param hdtr A structure containing the headers and trailers to send * @param offset Offset into the file where we should begin writing - * @param len Number of bytes to send + * @param len Number of bytes to send from the file * @param flags APR flags that are mapped to OS specific flags * @tip This functions acts like a blocking write by default. To change * this behavior, use apr_setsocketopt with the APR_SO_TIMEOUT option.