summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2015-07-23 00:32:14 -0500
committerChris Buechler <cmb@pfsense.org>2015-07-23 00:32:14 -0500
commitb0deba232b63d3a949ba86aac0c11c43c80e0821 (patch)
treec67957e2d23b9b56d3e6f9ec40c148618da4663e
parentfa944e1dde0bb977608e463b04df4322d6ba6a04 (diff)
downloadpfsense-b0deba232b63d3a949ba86aac0c11c43c80e0821.zip
pfsense-b0deba232b63d3a949ba86aac0c11c43c80e0821.tar.gz
Most of the flowtable bits were removed some time ago, take out the last of them too.
-rw-r--r--usr/local/www/system_advanced_network.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/usr/local/www/system_advanced_network.php b/usr/local/www/system_advanced_network.php
index 8a1debd..18d77ac 100644
--- a/usr/local/www/system_advanced_network.php
+++ b/usr/local/www/system_advanced_network.php
@@ -57,7 +57,6 @@ $pconfig['sharednet'] = $config['system']['sharednet'];
$pconfig['disablechecksumoffloading'] = isset($config['system']['disablechecksumoffloading']);
$pconfig['disablesegmentationoffloading'] = isset($config['system']['disablesegmentationoffloading']);
$pconfig['disablelargereceiveoffloading'] = isset($config['system']['disablelargereceiveoffloading']);
-$pconfig['flowtable'] = isset($config['system']['flowtable']);
if ($_POST) {
@@ -111,12 +110,6 @@ if ($_POST) {
setup_polling();
}
- if($_POST['flowtable'] == "yes") {
- $config['system']['flowtable'] = $_POST['flowtable'];
- } else {
- unset($config['system']['flowtable']);
- }
-
if($_POST['disablechecksumoffloading'] == "yes") {
$config['system']['disablechecksumoffloading'] = true;
} else {
@@ -299,29 +292,6 @@ function enable_change(enable_over) {
<?=gettext("This option will suppress ARP log messages when multiple interfaces reside on the same broadcast domain"); ?>
</td>
</tr>
-<?php
-/*
- $version = get_freebsd_version();
- if($version == "8"):
-
- <tr>
- <td colspan="2" class="list" height="12">&nbsp;</td>
- </tr>
- <tr>
- <td colspan="2" valign="top" class="listtopic">Flowtable support</td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncell">Enable Flowtable</td>
- <td width="78%" class="vtable">
- <input name="flowtable" type="checkbox" id="polling_enable" value="yes" <?php if ($pconfig['flowtable']) echo "checked=\"checked\""; ?> />
- <strong>Enable flowtable support</strong><br />
- Enables infrastructure for caching flows as a means of accelerating L3 and L2 lookups
- as well as providing stateful load balancing when used with RADIX_MPATH.<br />
- </td>
- </tr>
-<?php endif; ?>
-*/
-?>
<tr>
<td colspan="2" class="list" height="12">&nbsp;</td>
</tr>
OpenPOWER on IntegriCloud