------------------------------------------------------------ revno: 13680 revision-id: squid3@treenet.co.nz-20141208083318-gzhwildgmobqxis1 parent: squid3@treenet.co.nz-20141208083222-hvpo4mah68920ni9 committer: Amos Jeffries branch nick: 3.5 timestamp: Mon 2014-12-08 00:33:18 -0800 message: ext_delayer_acl: Update man(8) documentation ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20141208083318-gzhwildgmobqxis1 # target_branch: http://bzr.squid-cache.org/bzr/squid3/3.5 # testament_sha1: 2aac8b7761c8175e60ba9961c3eec6aa515b62a5 # timestamp: 2014-12-08 08:52:21 +0000 # source_branch: http://bzr.squid-cache.org/bzr/squid3/3.5 # base_revision_id: squid3@treenet.co.nz-20141208083222-\ # hvpo4mah68920ni9 # # Begin patch === modified file 'helpers/external_acl/delayer/ext_delayer_acl.pl.in' --- helpers/external_acl/delayer/ext_delayer_acl.pl.in 2014-09-13 13:31:49 +0000 +++ helpers/external_acl/delayer/ext_delayer_acl.pl.in 2014-12-08 08:33:18 +0000 @@ -1,17 +1,31 @@ #!@PERL@ + +use strict; +use warnings; +use Getopt::Long qw(:config auto_version auto_help); +use Pod::Usage; + =pod =head1 NAME -delayer - Squid external acl helper adding artificial delay to requests + delayer - Squid external ACL helper adding artificial delay to requests =head1 SYNOPSIS -delayer [--help] [--debug] [--log file] [--wait msec] + delayer [--help] [--debug] [--log file] [--wait msec] + +=head1 DESCRIPTION + +Squid external acl helper; causes squid to delay responding to HTTP requests. + +By carefully crafting the ACLs of a Squid setup it is possible to +selectively delay requests received by a proxy. After the configured amount +of time, it will always return "true". =head1 OPTIONS -=over 8 +=over 12 =item B<--help> or B<-h> @@ -33,14 +47,6 @@ =back -=head1 DESCRIPTION - -Squid external acl helper; causes squid to delay responding to HTTP requests. - -By carefully crafting the ACLs of a Squid setup it is possible to -selectively delay requests received by a proxy. After the configured amount -of time, it will always return "true". - =head1 CONFIGURATION To engage it, this snippet of configuration template can be used in squid.conf: @@ -74,34 +80,37 @@ * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. -(C) 2014 Francesco Chemolli + (C) 2014 Francesco Chemolli -This program is free software. You may redistribute copies of it under the -terms of the GNU General Public License version 2, or (at your opinion) any -later version. + This program is free software. You may redistribute copies of it under the + terms of the GNU General Public License version 2, or (at your opinion) any + later version. =head1 QUESTIONS -Questions on this code are best addressed on the Squid-users mailing list - +Questions on the usage of this program can be sent to the I> =head1 REPORTING BUGS Bug reports need to be made in English. -See http://wiki.squid-cache.org/SquidFaq/BugReporting for details of what you -need to include with your bug report. +See http://wiki.squid-cache.org/SquidFaq/BugReporting for details of what you need to include with your bug report. + Report bugs or bug fixes using http://bugs.squid-cache.org/ +Report serious security bugs to I> + +Report ideas for new improvements to the I> + =head1 SEE ALSO -B(8), B(7), B http://wiki.squid-cache.org/ , -B http://www.squid-cache.org/Doc/config/ +squid (8), GPL (7), + +The Squid FAQ wiki http://wiki.squid-cache.org/SquidFaq + +The Squid Configuration Manual http://www.squid-cache.org/Doc/config/ =cut -use strict; -use warnings; -use Getopt::Long qw(:config auto_version auto_help); use Data::Dumper; use Time::HiRes qw(gettimeofday tv_interval);