You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2013/08/05 01:00:13 UTC

svn commit: r1510354 - /apr/apr/trunk/include/apr_network_io.h

Author: trawick
Date: Sun Aug  4 23:00:13 2013
New Revision: 1510354

URL: http://svn.apache.org/r1510354
Log:
minor corrections to apr_socket_sendv() documentation

Modified:
    apr/apr/trunk/include/apr_network_io.h

Modified: apr/apr/trunk/include/apr_network_io.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_network_io.h?rev=1510354&r1=1510353&r2=1510354&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_network_io.h (original)
+++ apr/apr/trunk/include/apr_network_io.h Sun Aug  4 23:00:13 2013
@@ -526,7 +526,7 @@ APR_DECLARE(apr_status_t) apr_socket_sen
                                           apr_size_t *len);
 
 /**
- * Send multiple packets of data over a network.
+ * Send multiple buffers over a network.
  * @param sock The socket to send the data over.
  * @param vec The array of iovec structs containing the data to send 
  * @param nvec The number of iovec structs in the array
@@ -536,7 +536,7 @@ APR_DECLARE(apr_status_t) apr_socket_sen
  * This functions acts like a blocking write by default.  To change 
  * this behavior, use apr_socket_timeout_set() or the APR_SO_NONBLOCK
  * socket option.
- * The number of bytes actually sent is stored in argument 3.
+ * The number of bytes actually sent is stored in argument 4.
  *
  * It is possible for both bytes to be sent and an error to be returned.
  *