diff options
author | kotkov <kotkov@13f79535-47bb-0310-9956-ffa450edef68> | 2022-10-20 05:53:45 +0000 |
---|---|---|
committer | kotkov <kotkov@13f79535-47bb-0310-9956-ffa450edef68> | 2022-10-20 05:53:45 +0000 |
commit | f0de40ece46dfb80a81878eebf32b56e08344563 (patch) | |
tree | b4d346f41497698bd7264cecb5c5e2fb3897d72a /include/apr_network_io.h | |
parent | cfdd713e6f7713213e5bebba74e1dc570ba4a7b6 (diff) | |
download | libapr-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/apr_network_io.h')
-rw-r--r-- | include/apr_network_io.h | 6 |
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. |