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.