ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/myhttpd/tbf.pl
(Generate patch)

Comparing Coro/myhttpd/tbf.pl (file contents):
Revision 1.4 by root, Sat Oct 5 09:02:17 2002 UTC vs.
Revision 1.5 by root, Thu Nov 21 09:52:34 2002 UTC

1package tbf; 1package tbf;
2 2
3# kind of token-bucket-filter 3# kind of token-bucket-filter
4 4
5my $max_per_client = 24000; 5my $max_per_client = $::TBF_MAX_PER_CLIENT || 24000;
6 6
7sub new { 7sub new {
8 my $class = shift; 8 my $class = shift;
9 my %arg = @_; 9 my %arg = @_;
10 my $self = bless \%arg, $class; 10 my $self = bless \%arg, $class;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines