From: Amos Jeffries Date: Sun, 7 Dec 2014 14:47:32 +0000 (-0800) Subject: ext_delayer_acl: Update man(8) documentation X-Git-Tag: merge-candidate-3-v1~449 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=cbac7592e82263ae1a232a3b18d32bd04a2ac250;p=thirdparty%2Fsquid.git ext_delayer_acl: Update man(8) documentation --- diff --git a/helpers/external_acl/delayer/ext_delayer_acl.pl.in b/helpers/external_acl/delayer/ext_delayer_acl.pl.in index 3842df916e..9f45232943 100755 --- a/helpers/external_acl/delayer/ext_delayer_acl.pl.in +++ b/helpers/external_acl/delayer/ext_delayer_acl.pl.in @@ -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 @@ will be delayed by half a second (500 msec). =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 @@ This software is written by Francesco Chemolli * 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);