diff options
author | Ivan Zhakov <ivan@apache.org> | 2019-09-14 09:12:26 +0000 |
---|---|---|
committer | Ivan Zhakov <ivan@apache.org> | 2019-09-14 09:12:26 +0000 |
commit | fa844cac0e095cec551cfb0b1e7cea2d32b2375c (patch) | |
tree | 1c0c6fb28f5480c7826134fb1f58b76486345716 /network_io | |
parent | 0ecb04a27c8f1a32953c3e8f0b2a30d799c6051d (diff) | |
download | apr-fa844cac0e095cec551cfb0b1e7cea2d32b2375c.tar.gz |
* network_io/win32/sendrecv.c
(apr_socket_sendfile): Remove Windows 95 compatibility code.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1866928 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'network_io')
-rw-r--r-- | network_io/win32/sendrecv.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/network_io/win32/sendrecv.c b/network_io/win32/sendrecv.c index 61bc20746..0580e774f 100644 --- a/network_io/win32/sendrecv.c +++ b/network_io/win32/sendrecv.c @@ -271,10 +271,6 @@ APR_DECLARE(apr_status_t) apr_socket_sendfile(apr_socket_t *sock, int sendv_trailers = 0; char hdtrbuf[4096]; - if (apr_os_level < APR_WIN_NT) { - return APR_ENOTIMPL; - } - /* Use len to keep track of number of total bytes sent (including headers) */ bytes_to_send = *len; *len = 0; |