1
0
mirror of https://github.com/apache/httpd.git synced 2025-10-28 20:34:59 +03:00
Files
apache/docs/manual/mod/mod_dialup.xml
Christophe Jaillet e3f73b8b28 Add V.34 option for ModemStandard directive
Add some " to synch with 2.4.x and fix color highlight in online doc.

("i-was-rich-and-got-a-leased-line" is still undocumented, but do we really need to document it?)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1731351 13f79535-47bb-0310-9956-ffa450edef68
2016-02-20 09:06:58 +00:00

72 lines
2.5 KiB
XML

<?xml version="1.0"?>
<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
<!-- $LastChangedRevision$ -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--<modulesynopsis> is the root tag and must surround all other tags.
The sequence of tags is important and must be followed in order for
the document to validate. -->
<modulesynopsis metafile="mod_dialup.xml.meta">
<name>mod_dialup</name>
<description>Send static content at a bandwidth rate limit, defined by the various old modem standards</description>
<status>Experimental</status>
<sourcefile>mod_dialup.c</sourcefile>
<identifier>dialup_module</identifier>
<summary>
<p>It is a module that sends static content at a bandwidth rate limit, defined
by the various old modem standards. So, you can browse your site with a 56k
V.92 modem, by adding something like this:</p>
<highlight language="config">
&lt;Location "/mysite"&gt;
ModemStandard "V.92"
&lt;/Location&gt;
</highlight>
<p>Previously to do bandwidth rate limiting modules would have to block an entire
thread, for each client, and insert sleeps to slow the bandwidth down.
Using the new suspend feature, a handler can get callback N milliseconds in
the future, and it will be invoked by the Event MPM on a different thread,
once the timer hits. From there the handler can continue to send data to the client.</p>
</summary>
<directivesynopsis>
<name>ModemStandard</name>
<description>Modem standard to simulate</description>
<syntax>ModemStandard V.21|V.26bis|V.32|V.34|V.92</syntax>
<contextlist><context>directory</context></contextlist>
<usage>
<p>Specify what modem standard you wish to simulate.</p>
<highlight language="config">
&lt;Location "/mysite"&gt;
ModemStandard "V.26bis"
&lt;/Location&gt;
</highlight>
</usage>
</directivesynopsis>
</modulesynopsis>