summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorkotkov <kotkov@13f79535-47bb-0310-9956-ffa450edef68>2022-10-20 05:53:45 +0000
committerkotkov <kotkov@13f79535-47bb-0310-9956-ffa450edef68>2022-10-20 05:53:45 +0000
commitf0de40ece46dfb80a81878eebf32b56e08344563 (patch)
treeb4d346f41497698bd7264cecb5c5e2fb3897d72a /include
parentcfdd713e6f7713213e5bebba74e1dc570ba4a7b6 (diff)
downloadlibapr-f0de40ece46dfb80a81878eebf32b56e08344563.tar.gz
Revert r1902312, r1904699 in preparation for a slightly different change.
Shortlog: - r1902312: apr_socket_sendv: WIN32: Limit the number of WSABUFs allocated for a single call. - r1904699: apr_socket_sendv: WIN32: Follow up to r1902312: Avoid short writes. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1904714 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_network_io.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/apr_network_io.h b/include/apr_network_io.h
index e37b95297..b3536d802 100644
--- a/include/apr_network_io.h
+++ b/include/apr_network_io.h
@@ -574,12 +574,6 @@ APR_DECLARE(apr_status_t) apr_socket_send(apr_socket_t *sock, const char *buf,
* socket option.
* The number of bytes actually sent is stored in argument 4.
*
- * This function does not provide full-write and/or atomicity guarantees
- * if the underlying system call does not either. Some systems (like Windows)
- * guarantee both for a single system call but this call does not allow for
- * as much data as an iovec vector can contain; in this case apr_socket_sendv()
- * can issue multiple system calls thus favoring full-write over atomicity.
- *
* It is possible for both bytes to be sent and an error to be returned.
*
* APR_EINTR is never returned.