summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_rules_edit.php
diff options
context:
space:
mode:
authorDaniel Aleksandersen <code@daniel.priv.no>2014-02-13 00:10:35 +0100
committerDaniel Aleksandersen <code@daniel.priv.no>2014-02-13 00:10:35 +0100
commitd5bdbe0c50cb272d86180dd71d587d7685096ce9 (patch)
tree00a46614e0bc1c184b630cf9a280bddb526e4e81 /usr/local/www/firewall_rules_edit.php
parent25333e5a85c7a55284f286240ab2c54919a891b0 (diff)
downloadpfsense-d5bdbe0c50cb272d86180dd71d587d7685096ce9.zip
pfsense-d5bdbe0c50cb272d86180dd71d587d7685096ce9.tar.gz
Change string to "Maximum new connections per host / per second(s)"
Clarifying the setting's meaning. As suggested by forum member "Senser" on https://forum.pfsense.org/index.php/topic,65472.msg356024.html#msg356024
Diffstat (limited to 'usr/local/www/firewall_rules_edit.php')
-rwxr-xr-xusr/local/www/firewall_rules_edit.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php
index dd15aa9..4d7daf4 100755
--- a/usr/local/www/firewall_rules_edit.php
+++ b/usr/local/www/firewall_rules_edit.php
@@ -479,7 +479,7 @@ if ($_POST) {
if (!empty($_POST['max-src-conn']))
$input_errors[] = gettext("You can only specify the maximum number of established connections per host (advanced option) for TCP protocol.");
if (!empty($_POST['max-src-conn-rate']) || !empty($_POST['max-src-conn-rates']))
- $input_errors[] = gettext("You can only specify the maximum new connections / per second(s) (advanced option) for TCP protocol.");
+ $input_errors[] = gettext("You can only specify the maximum new connections per host / per second(s) (advanced option) for TCP protocol.");
if (!empty($_POST['statetimeout']))
$input_errors[] = gettext("You can only specify the state timeout (advanced option) for TCP protocol.");
}
@@ -494,7 +494,7 @@ if ($_POST) {
if (!empty($_POST['max-src-states']))
$input_errors[] = gettext("You can only specify the maximum state entries per host (advanced option) for Pass type rules.");
if (!empty($_POST['max-src-conn-rate']) || !empty($_POST['max-src-conn-rates']))
- $input_errors[] = gettext("You can only specify the maximum new connections / per second(s) (advanced option) for Pass type rules.");
+ $input_errors[] = gettext("You can only specify the maximum new connections per host / per second(s) (advanced option) for Pass type rules.");
if (!empty($_POST['statetimeout']))
$input_errors[] = gettext("You can only specify the state timeout (advanced option) for Pass type rules.");
}
@@ -509,7 +509,7 @@ if ($_POST) {
if (!empty($_POST['max-src-states']))
$input_errors[] = gettext("You cannot specify the maximum state entries per host (advanced option) if statetype is none and no L7 container is selected.");
if (!empty($_POST['max-src-conn-rate']) || !empty($_POST['max-src-conn-rates']))
- $input_errors[] = gettext("You cannot specify the maximum new connections / per second(s) (advanced option) if statetype is none and no L7 container is selected.");
+ $input_errors[] = gettext("You cannot specify the maximum new connections per host / per second(s) (advanced option) if statetype is none and no L7 container is selected.");
if (!empty($_POST['statetimeout']))
$input_errors[] = gettext("You cannot specify the state timeout (advanced option) if statetype is none and no L7 container is selected.");
}
@@ -1268,7 +1268,7 @@ $i--): ?>
echo "<option value=\"{$x}\"{$selected}>{$x}</option>\n";
} ?>
</select><br />
- <?=gettext("Maximum new connections / per second(s) (TCP only)");?>
+ <?=gettext("Maximum new connections per host / per second(s) (TCP only)");?>
</p><p>
<input name="statetimeout" value="<?php echo htmlspecialchars($pconfig['statetimeout']) ?>" /><br/>
<?=gettext("State Timeout in seconds (TCP only)");?>
OpenPOWER on IntegriCloud