]> granicus.if.org Git - apache/blob - docs/manual/mod/mpm_winnt.xml
add docs for WorkerStackSize directive
[apache] / docs / manual / mod / mpm_winnt.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
3 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
4
5 <!--
6  Copyright 2002-2004 The Apache Software Foundation
7
8  Licensed under the Apache License, Version 2.0 (the "License");
9  you may not use this file except in compliance with the License.
10  You may obtain a copy of the License at
11
12      http://www.apache.org/licenses/LICENSE-2.0
13
14  Unless required by applicable law or agreed to in writing, software
15  distributed under the License is distributed on an "AS IS" BASIS,
16  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  See the License for the specific language governing permissions and
18  limitations under the License.
19 -->
20
21 <modulesynopsis metafile="mpm_winnt.xml.meta">
22
23 <name>mpm_winnt</name>
24 <description>This Multi-Processing Module is optimized for Windows
25 NT.</description>
26 <status>MPM</status>
27 <sourcefile>mpm_winnt.c</sourcefile>
28 <identifier>mpm_winnt_module</identifier>
29
30 <summary>
31     <p>This Multi-Processing Module (MPM) is the default for the
32     Windows NT operating systems. It uses a single control process
33     which launches a single child process which in turn creates
34     threads to handle requests</p>
35 </summary>
36
37 <directivesynopsis location="mpm_common"><name>CoreDumpDirectory</name>
38 </directivesynopsis>
39 <directivesynopsis location="mpm_common"><name>PidFile</name>
40 </directivesynopsis>
41 <directivesynopsis location="mpm_common"><name>Listen</name>
42 </directivesynopsis>
43 <directivesynopsis location="mpm_common"><name>ListenBacklog</name>
44 </directivesynopsis>
45 <directivesynopsis location="mpm_common"><name>MaxRequestsPerChild</name>
46 </directivesynopsis>
47 <directivesynopsis location="mpm_common"><name>MaxMemFree</name>
48 </directivesynopsis>
49 <directivesynopsis location="mpm_common"><name>ScoreBoardFile</name>
50 </directivesynopsis>
51 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
52 </directivesynopsis>
53 <directivesynopsis location="mpm_common"><name>ThreadLimit</name>
54 </directivesynopsis>
55 <directivesynopsis location="mpm_common"><name>ThreadsPerChild</name>
56 </directivesynopsis>
57 <directivesynopsis location="mpm_common"><name>WorkerStackSize</name>
58 </directivesynopsis>
59
60 <directivesynopsis>
61 <name>Win32DisableAcceptEx</name>
62 <description>Use accept() rather than AcceptEx() to accept network connections</description>
63 <syntax>Win32DisableAcceptEx</syntax>
64 <default>AcceptEx() is enabled by default. Use this directive to disable use of
65     AcceptEx()</default>
66 <contextlist><context>server config</context></contextlist>
67 <compatibility>Available in Version 2.0.49 and later</compatibility>
68
69 <usage>
70     <p><code>AcceptEx()</code> is a Microsoft WinSock v2 API that provides
71     some performance improvements over the use of the BSD style
72     <code>accept()</code> API in certain circumstances. Some popular Windows
73     products, typically virus scanning or virtual private network
74     packages, have bugs that interfere with the proper operation of
75     <code>AcceptEx()</code>. If you encounter an error condition like:</p>
76
77     <example>
78         [error] (730038)An operation was attempted on something that is
79         not a socket.: winnt_accept: AcceptEx failed. Attempting to recover.
80     </example>
81
82     <p>you should use this directive to disable the use of
83     <code>AcceptEx()</code>.</p>
84 </usage>
85 </directivesynopsis>
86
87 </modulesynopsis>