]> granicus.if.org Git - apache/blob - docs/manual/mod/mod_dialup.xml
Update transforms
[apache] / docs / manual / mod / mod_dialup.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 <!-- $LastChangedRevision$ -->
5
6 <!--                                                                                                                              
7  Licensed to the Apache Software Foundation (ASF) under one or more 
8  contributor license agreements.  See the NOTICE file distributed with 
9  this work for additional information regarding copyright ownership.
10  The ASF licenses this file to You under the Apache License, Version 2.0 
11  (the "License"); you may not use this file except in compliance with
12  the License.  You may obtain a copy of the License at
13
14      http://www.apache.org/licenses/LICENSE-2.0
15
16  Unless required by applicable law or agreed to in writing, software
17  distributed under the License is distributed on an "AS IS" BASIS,
18  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  See the License for the specific language governing permissions and
20  limitations under the License.
21 -->
22
23 <!--<modulesynopsis> is the root tag and must surround all other tags.
24 The sequence of tags is important and must be followed in order for
25 the document to validate. -->
26
27 <modulesynopsis metafile="mod_dialup.xml.meta"> 
28 <name>mod_dialup</name>
29 <description>Send static content at a bandwidth rate limit, defined by the various old modem standards</description>
30 <status>Experimental</status>
31 <sourcefile>mod_dialup.c</sourcefile>
32 <identifier>dialup_module</identifier>
33
34 <summary>
35 <p>It is a module that sends static content at a bandwidth rate limit, defined
36 by the various old modem standards. So, you can browse your site with a 56k 
37 V.92 modem, by adding something like this:</p>
38
39 <example>
40 &lt;Location /mysite&gt;<br />
41 ModemStandard V.92<br />
42 &lt;/Location&gt;
43 </example>
44
45 <p>Previously to do bandwidth rate limiting modules would have to block an entire
46 thread, for each client, and insert sleeps to slow the bandwidth down.  
47 Using the new suspend feature, a handler can get callback N milliseconds in 
48 the future, and it will be invoked by the Event MPM on a different thread, 
49 once the timer hits.  From there the handler can continue to send data to the client.</p>
50 </summary>
51
52 <directivesynopsis>
53 <name>ModemStandard</name>
54 <description>Modem standard to simulate</description>
55 <syntax>ModemStandard V.21|V.26bis|V.32|V.92</syntax>
56
57 <usage>
58 <p>Specify what modem standard you wish to simulate.</p>
59
60 <example>
61 &lt;Location /mysite&gt;<br />
62 ModemStandard V.26bis<br />
63 &lt;/Location&gt;
64 </example>
65
66 </usage>
67
68 </directivesynopsis>
69
70 </modulesynopsis>
71