summaryrefslogtreecommitdiffstats
path: root/etc/inc/shaper.inc
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@world.inf.org>2013-09-03 04:45:03 -0700
committerPhil Davis <phil.davis@world.inf.org>2013-09-03 04:45:03 -0700
commit794195d15341b574ede459119ae56bf91445c594 (patch)
treeb59f80666c26f1849bcf4dcf89e9180f66c072be /etc/inc/shaper.inc
parentce4aea3a29c6d7802ed3c258488e4b4702ce0d69 (diff)
downloadpfsense-794195d15341b574ede459119ae56bf91445c594.zip
pfsense-794195d15341b574ede459119ae56bf91445c594.tar.gz
Traffic Shaper GUI text typos
and note the Queue Limit is a number of packets (not packets per second)
Diffstat (limited to 'etc/inc/shaper.inc')
-rw-r--r--etc/inc/shaper.inc28
1 files changed, 13 insertions, 15 deletions
diff --git a/etc/inc/shaper.inc b/etc/inc/shaper.inc
index f5c6a2c..d7ecbfd 100644
--- a/etc/inc/shaper.inc
+++ b/etc/inc/shaper.inc
@@ -331,11 +331,11 @@ class altq_root_queue {
if ($data['qlimit'] && (!is_numeric($data['qlimit'])))
$input_errors[] = gettext("Qlimit must be an integer.");
if ($data['qlimit'] < 0)
- $input_errors[] = gettext("Qlimit must be an positive.");
+ $input_errors[] = gettext("Qlimit must be positive.");
if ($data['tbrconfig'] && (!is_numeric($data['tbrconfig'])))
$input_errors[] = gettext("Tbrsize must be an integer.");
if ($data['tbrconfig'] < 0)
- $input_errors[] = gettext("Tbrsize must be an positive.");
+ $input_errors[] = gettext("Tbrsize must be positive.");
}
/* Implement this to shorten some code on the frontend page */
@@ -1002,14 +1002,10 @@ class priq_queue {
$reqdfieldsn[] = gettext("Name");
shaper_do_input_validation($data, $reqdfields, $reqdfieldsn, $input_errors);
- if ($data['bandwidth'] && (!is_numeric($data['bandwidth'])))
+ if ($data['bandwidth'] && (!is_numeric($data['bandwidth'])))
$input_errors[] = "Bandwidth must be an integer.";
- if ($data['bandwidth'] < 0)
+ if ($data['bandwidth'] < 0)
$input_errors[] = "Bandwidth cannot be negative.";
- if ($data['qlimit'] && (!is_numeric($data['qlimit'])))
- $input_errors[] = "Qlimit must be an integer.";
- if ($data['qlimit'] < 0)
- $input_errors[] = "Qlimit must be an positive.";
if ($data['priority'] && (!is_numeric($data['priority'])
|| ($data['priority'] < 1) || ($data['priority'] > 15))) {
$input_errors[] = gettext("The priority must be an integer between 1 and 15.");
@@ -1196,7 +1192,7 @@ class priq_queue {
$form .= "<td width=\"78%\" class=\"vtable\"> <input name=\"qlimit\" type=\"text\" id=\"qlimit\" size=\"8\" value=\"";
$form .= htmlspecialchars($this->GetQlimit());
$form .= "\" />";
- $form .= "<br/> <span class=\"vexpl\">" . gettext("Queue limit in packets per second.");
+ $form .= "<br/> <span class=\"vexpl\">" . gettext("Queue limit in packets.");
$form .= "</span></td></tr>";
$form .= "<tr>";
$form .= "<td width=\"22%\" valign=\"middle\" class=\"vncell\">" . gettext("Scheduler options") . "</td>";
@@ -1648,7 +1644,7 @@ class hfsc_queue extends priq_queue {
$input_errors[] = ("upperlimit m1 cannot be smaller than m2");
if (get_interface_bandwidth($this) < (0.8 * (floatval($bw_1) + floatval($bw_2))))
- $input_errors[] = ("upperlimit specification excedd 80% of allowable allocation.");
+ $input_errors[] = ("upperlimit specification exceeds 80% of allowable allocation.");
}
*/
if ($data['linkshare1'] <> "" && $data['linkshare2'] == "")
@@ -1674,7 +1670,7 @@ class hfsc_queue extends priq_queue {
$input_errors[] = ("linkshare m1 cannot be smaller than m2");
if (get_interface_bandwidth($this) < (0.8 * (floatval($bw_1) + floatval($bw_2))))
- $input_errors[] = ("linkshare specification excedd 80% of allowable allocation.");
+ $input_errors[] = ("linkshare specification exceeds 80% of allowable allocation.");
}
*/
@@ -1693,7 +1689,7 @@ class hfsc_queue extends priq_queue {
$input_errors[] = ("realtime m1 cannot be smaller than m2");
if (get_interface_bandwidth($this) < (0.8 * (floatval($bw_1) + floatval($bw_2))))
- $input_errors[] = ("realtime specification excedd 80% of allowable allocation.");
+ $input_errors[] = ("realtime specification exceeds 80% of allowable allocation.");
}
*/
}
@@ -3047,6 +3043,8 @@ class dnpipe_class extends dummynet_class {
if (!empty($data["bandwidth{$i}"])) {
if (!is_numeric($data["bandwidth{$i}"]))
$input_errors[] = sprintf(gettext("Bandwidth for schedule %s must be an integer."), $data["bwsched{$i}"]);
+ else if (($data["burst{$i}"] != "") && (!is_numeric($data["burst{$i}"])))
+ $input_errors[] = sprintf(gettext("Burst for schedule %s must be an integer."), $data["bwsched{$i}"]);
else
$entries++;
}
@@ -4109,7 +4107,7 @@ function layer7_start_l7daemon() {
$path = "{$g['tmp_path']}/" . $filename;
unset($l7pid);
- /* Only reread the configuration rather than restart to avoid loosing information. */
+ /* Only reread the configuration rather than restart to avoid losing information. */
exec("/bin/pgrep -f 'ipfw-classifyd .* -p ". $l7rules->GetRPort() . "'", $l7pid);
if (count($l7pid) > 0) {
log_error(sprintf(gettext("Sending HUP signal to %s"), $l7pid[0]));
@@ -4293,7 +4291,7 @@ function read_altq_config() {
foreach ($conf['queue'] as $key1 => $q) {
array_push($path, $key1);
/*
- * XXX: we compeletely ignore errors here but anyway we must have
+ * XXX: we completely ignore errors here but anyway we must have
* checked them before so no harm should be come from this.
*/
$root->add_queue($root->GetInterface(), $q, &$path, $input_errors);
@@ -4332,7 +4330,7 @@ function read_dummynet_config() {
foreach ($conf['queue'] as $key1 => $q) {
array_push($path, $key1);
/*
- * XXX: we compeletely ignore errors here but anyway we must have
+ * XXX: we completely ignore errors here but anyway we must have
* checked them before so no harm should be come from this.
*/
$root->add_queue($root->GetQname(), $q, &$path, $input_errors);
OpenPOWER on IntegriCloud