Changes with Apache 2.0.50
+ *) Restore the ability to disable the use of AcceptEx on Win9x systems
+ automatically (broken in 2.0.49). PR 28529. [André Malo]
+
*) <VirtualHost myhost> now applies to all IP addresses for myhost
instead of just the first one reported by the resolver. This
corrects a regression since 1.3. [Jeff Trawick]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2004/06/11 19:39:10 $]
+Last modified at [$Date: 2004/06/11 20:27:26 $]
Release:
modules/mappers/mod_actions.c: r1.32, r1.34
+1: nd
- *) Disable AcceptEx on Win9x systems automatically. (broken in 2.0.49)
- PR 28529
- server/mpm/winnt/mpm_winnt.c: 1.311
- +1: nd, trawick, stoddard
-
*) export ap_set_sub_req_protocol and ap_finalize_sub_req_protocol on Win32 and NetWare.
(should be a minor MMN bump). PR 28523.
server/protocol.c: r1.147
exit(APEXIT_INIT);
}
+ /* Win9x: disable AcceptEx */
+ if (osver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) {
+ use_acceptex = 0;
+ }
+
ap_listen_pre_config();
ap_threads_per_child = DEFAULT_THREADS_PER_CHILD;
ap_pid_fname = DEFAULT_PIDLOG;