diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2015-12-14 11:49:14 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2015-12-14 11:49:14 -0500 |
commit | 3183d432cc0c17cc3af0fc49151fed0a4a724520 (patch) | |
tree | ae4f9e7fd20686844092a7c1633c62a587649a25 /src/usr/local | |
parent | 5db26d3f8e0110faa39d3638a81dbd2b3d78d186 (diff) | |
parent | 3734ffb6791721d44eb5faaec870f07ab0f29278 (diff) | |
download | pfsense-3183d432cc0c17cc3af0fc49151fed0a4a724520.zip pfsense-3183d432cc0c17cc3af0fc49151fed0a4a724520.tar.gz |
Merge pull request #2223 from phil-davis/patch-4
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/firewall_rules_edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/firewall_rules_edit.php b/src/usr/local/www/firewall_rules_edit.php index 0da4ac9..7ac4494 100644 --- a/src/usr/local/www/firewall_rules_edit.php +++ b/src/usr/local/www/firewall_rules_edit.php @@ -1476,7 +1476,7 @@ $section->addInput(new Form_Input( 'Max. src. conn. Rate', 'number', $pconfig['max-src-conn-rate'] -))->setHelp('Maximum state entries per host'); +))->setHelp('Maximum new connections per host (TCP only)'); $section->addInput(new Form_Input( 'max-src-conn-rates', @@ -1484,7 +1484,7 @@ $section->addInput(new Form_Input( 'number', $pconfig['max-src-conn-rates'], ['min' => 1, 'max' => 255] -))->setHelp('Maximum new connections per host / per second(s) (TCP only)'); +))->setHelp('/ per how many second(s) (TCP only)'); $section->addInput(new Form_Input( 'statetimeout', |