summaryrefslogtreecommitdiff
path: root/include/apr_network_io.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2013-08-04 23:00:13 +0000
committerJeff Trawick <trawick@apache.org>2013-08-04 23:00:13 +0000
commit877270945ef9969ec70dea2a28e39297d87474b0 (patch)
tree2110c29cda742a602fea4d31613274f58c672057 /include/apr_network_io.h
parentb1c85a232f3f6d4cdb089740f4a5d38e95d29986 (diff)
downloadapr-877270945ef9969ec70dea2a28e39297d87474b0.tar.gz
minor corrections to apr_socket_sendv() documentation
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1510354 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_network_io.h')
-rw-r--r--include/apr_network_io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_network_io.h b/include/apr_network_io.h
index 14a25faa0..d7ffaf509 100644
--- a/include/apr_network_io.h
+++ b/include/apr_network_io.h
@@ -526,7 +526,7 @@ APR_DECLARE(apr_status_t) apr_socket_send(apr_socket_t *sock, const char *buf,
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_send(apr_socket_t *sock, const char *buf,
* 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.
*