]> granicus.if.org Git - apache/commitdiff
mod_ratelimit has an output filter, not a handler. Also took a quick
authorEric Covener <covener@apache.org>
Wed, 23 Nov 2011 20:09:24 +0000 (20:09 +0000)
committerEric Covener <covener@apache.org>
Wed, 23 Nov 2011 20:09:24 +0000 (20:09 +0000)
pass through the other text.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1205560 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_ratelimit.xml

index 079c4464b53079927dfda29149a86d689efa8ae1..0128def4596c0ec226797c3478b3380d141fc7f0 100644 (file)
@@ -33,14 +33,14 @@ the document to validate. -->
 
 <summary>
 
-<p>Provides a <code>rate_limit</code> filter to limit client bandwidth.
-The connection speed to be simulated is specified, in kb/s, using the environment
+<p>Provides a filter named <code>RATE_LIMIT</code> to limit client bandwidth.
+The connection speed to be simulated is specified, in KiB/s, using the environment
 variable <code>rate-limit</code>.</p>
 
 <example><title>Example Configuration</title>
 &lt;Location /downloads&gt;<br />
 <indent>
-SetHandler RATE_LIMIT<br />
+SetOutputFilter RATE_LIMIT<br />
 SetEnv rate-limit 400 <br />
 </indent>
 &lt;/Location&gt;