1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Axe most WIN32 stuff from Apache 1.3. In Apache 2.0 we either use APR

later for this or we don't do it at all. But we certainly no longer want
to see any platform specific things inside a module.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89018 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ralf S. Engelschall
2001-05-05 16:35:18 +00:00
parent d3cf43347b
commit 4f6be425be
7 changed files with 1 additions and 259 deletions

View File

@@ -359,12 +359,8 @@ void ssl_hook_NewConnection(conn_rec *conn)
/*
* Improve I/O throughput by using
* OpenSSL's read-ahead functionality
* (don't used under Win32, because
* there we use select())
*/
#ifndef WIN32
SSL_set_read_ahead(ssl, TRUE);
#endif
return;
}