| Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.arcetri.astro.it/manual/fr/mod/mod_dialup.html Дата изменения: Fri Nov 20 00:43:57 2015 Дата индексирования: Sun Apr 10 06:46:06 2016 Кодировка: Поисковые слова: asteroid | 
Apache HTTP Server Version 2.4

| Description: | Send static content at a bandwidth rate limit, defined by the various old modem standards | 
|---|---|
| Status: | Experimental | 
| Module Identifier: | dialup_module | 
| Source File: | mod_dialup.c | 
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.
| Description: | Modem standard to simulate | 
|---|---|
| Syntax: | ModemStandard V.21|V.26bis|V.32|V.92 | 
| Context: | directory | 
| Status: | Experimental | 
| Module: | mod_dialup | 
Specify what modem standard you wish to simulate.
<Location /mysite>
    ModemStandard V.26bis
</Location>