Private
Server IP : 195.201.23.43  /  Your IP : 18.119.143.234
Web Server : Apache
System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64
User : kdecoratie ( 1041)
PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/usermin/htaccess/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/usermin/htaccess/mod_bandwidth.pl
# mod_bandwidth.pl
# Editors for bandwidth-limiting directives

sub mod_bandwidth_directives
{
local $rv;
$rv = [ [ 'BandWidthDataDir', 0, 1, 'global', undef, -1 ],
	[ 'BandWidthModule', 0, 1, 'virtual' ],
	[ 'BandWidth', 1, 1, 'directory htaccess' ],
	[ 'LargeFileLimit', 1, 1, 'directory htaccess' ],
	[ 'MaxConnection', 0, 1, 'directory htaccess' ],
#	[ 'MinBandWidth', 1, 1, 'directory htaccess' ]
	[ 'BandWidthPulse', 0, 1, 'virtual' ]
      ];
return &make_directives($rv, $_[0], "mod_bandwidth");
}

sub edit_BandWidthDataDir
{
return (2,
	$text{'mod_band_dir'},
	&opt_input($_[0]->{'value'}, "BandWidthDataDir", $text{'default'}, 40));
}
sub save_BandWidthDataDir
{
if (!$in{'BandWidthDataDir_def'}) {
	-d $in{'BandWidthDataDir'} || &error($text{'mod_band_edir'});
	local $sd;
	foreach $sd ('master', 'link') {
		-d "$in{'BandWidthDataDir'}/$sd" ||
			&error(&text('mod_band_esubdir', $sd));
		}
	}
return &parse_opt("BandWidthDataDir");
}

sub edit_BandWidthModule
{
return (1, $text{'mod_band_enable'},
	&choice_input($_[0]->{'value'}, "BandWidthModule", "",
	      "$text{'yes'},on", "$text{'no'},off", "$text{'default'},"));
}
sub save_BandWidthModule
{
return &parse_choice("BandWidthModule");
}

sub edit_BandWidth
{
local ($rv, $i, $max);
$rv = "<table border>\n".
      "<tr $tb> <td><b>$text{'mod_band_bw'}</b></td>\n".
      "<td><b>$text{'mod_band_client'}</b></td> </tr>\n";
$max = @{$_[0]}+1;
for($i=0; $i<$max; $i++) {
	$rv .= "<tr $cb>\n";
	$rv .= "<td><input name=BandWidth_bw_$i size=10 ".
	       "value=\"$_[0]->[$i]->{'words'}->[1]\"></td>\n";
	local $client = $_[0]->[$i]->{'words'}->[0];
	$rv .= sprintf
	        "<td><input type=radio name=BandWidth_all_$i value=1 %s> $text{'mod_band_all'}\n",
	        $client eq "all" ? "checked" : "";
	$rv .= sprintf
	        "<input type=radio name=BandWidth_all_$i value=0 %s> $text{'mod_band_ent'}\n",
	        $client eq "all" ? "" : "checked";
	$rv .= sprintf
	        "<input name=BandWidth_$i size=20 value=\"%s\"></td>\n",
	        $client eq "all" ? "" : $client;
	$rv .= "</tr>\n";
	}
$rv .= "</table>\n";
return (2, $text{'mod_band_bandwidth'}, $rv);
}
sub save_BandWidth
{
local ($i, $bw, $client, $all, @rv);
for($i=0; defined($bw = $in{"BandWidth_bw_$i"}); $i++) {
	$client = $in{"BandWidth_$i"};
	$all = $in{"BandWidth_all_$i"};
	next if ($bw eq "");
	$bw =~ /^\d+$/ || &error(&text('mod_band_ebw', $bw));
	$all || $client =~ /^[a-z0-9\.\-\_\/]+$/i ||
		&error(&text('mod_band_eclient', $bw));
	push(@rv, ($all ? "all" : $client)." ".$bw);
	}
return ( \@rv );
}

sub edit_LargeFileLimit
{
local ($rv, $i, $max);
$rv = "<table border>\n".
      "<tr $tb> <td><b>$text{'mod_band_bw'}</b></td>\n".
      "<td><b>$text{'mod_band_size'}</b></td> </tr>\n";
$max = @{$_[0]}+1;
for($i=0; $i<$max; $i++) {
	$rv .= "<tr $cb>\n";
	$rv .= "<td><input name=LargeFileLimit_bw_$i size=10 ".
	       "value=\"$_[0]->[$i]->{'words'}->[1]\"></td>\n";
	$rv .= "<td><input name=LargeFileLimit_$i size=10 ".
	       "value=\"$_[0]->[$i]->{'words'}->[0]\"></td>\n";
	$rv .= "</tr>\n";
	}
$rv .= "</table>\n";
return (2, $text{'mod_band_sizelimit'}, $rv);
}
sub save_LargeFileLimit
{
local ($i, $bw, $size, @rv);
for($i=0; defined($bw = $in{"LargeFileLimit_bw_$i"}); $i++) {
	$size = $in{"LargeFileLimit_$i"};
	next if ($bw eq "");
	$bw =~ /^\d+$/ || &error(&text('mod_band_ebw', $bw));
	$size =~ /^\d+$/ || $size == -1 || &error(&text('mod_band_esize', $bw));
	push(@rv, "$size $bw");
	}
return ( \@rv );
}

sub edit_MaxConnection
{
return (1,
	$text{'mod_band_max'},
	&opt_input($_[0]->{'value'}, "MaxConnections", $text{'default'}, 4));
}
sub save_MaxConnection
{
return &parse_opt("MaxConnections", '^\d+$',
		  $text{'mod_band_emax'});
}

sub edit_BandWidthPulse
{
return (1,
	$text{'mod_band_pulse'},
	&opt_input($_[0]->{'value'}, "BandWidthPulse", $text{'default'}, 4));
}
sub save_BandWidthPulse
{
return &parse_opt("BandWidthPulse", '^\d+$',
		  $text{'mod_band_epulse'});
}

1;

Private