From: Rich Bowen Date: Thu, 22 Apr 2010 11:59:18 +0000 (+0000) Subject: mod_dialup docs. X-Git-Tag: 2.3.6~178 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0565f7329394b60157dbf2ac1525f11e26992b23;p=apache mod_dialup docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936796 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_dialup.xml b/docs/manual/mod/mod_dialup.xml new file mode 100644 index 0000000000..c36527c03e --- /dev/null +++ b/docs/manual/mod/mod_dialup.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + +mod_dialup +Send static content at a bandwidth rate limit, defined by the various old modem standards +extension +mod_dialup.c +dialup_module + + +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: + + +<Location /mysite> +ModemStandard V.92 +</Location> + + +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. + + + +ModemStandard +Modem standard to simulate +ModemStandard V.21|V.26bis|V.32|V.92 + + +

Specify what modem standard you wish to simulate.

+ + +<Location /mysite> +ModemStandard V.92 +</Location> + + +
+ +
+ +
+