From c386fea7317438f55320fc9af8256814aca7f78b Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Thu, 22 Apr 2010 12:04:37 +0000 Subject: [PATCH] And one more time to make 'validate-xml' happy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@936803 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_dialup.html.en | 10 ++++++++-- docs/manual/mod/mod_dialup.xml | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/docs/manual/mod/mod_dialup.html.en b/docs/manual/mod/mod_dialup.html.en index c7971299d4..7b048be3ac 100644 --- a/docs/manual/mod/mod_dialup.html.en +++ b/docs/manual/mod/mod_dialup.html.en @@ -29,7 +29,9 @@ SourceĀ File:mod_dialup.c

Summary

-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: +

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>
@@ -37,7 +39,11 @@ 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. +

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.

Directives