summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-06-21 21:08:59 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-06-21 21:08:59 +0000
commitf4e2a352564c1096074ec30a376995c0934bc0c1 (patch)
tree9e165fe210b26e06f88e064aac758fdfe87ac047 /usr
parent6847d0ede45fd06e4055b7644aa9cb64f2db9a48 (diff)
downloadpfsense-f4e2a352564c1096074ec30a376995c0934bc0c1.zip
pfsense-f4e2a352564c1096074ec30a376995c0934bc0c1.tar.gz
Backout last commit
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/www/firewall_rules_edit.php36
1 files changed, 1 insertions, 35 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php
index 116efc8..9e1520e 100755
--- a/usr/local/www/firewall_rules_edit.php
+++ b/usr/local/www/firewall_rules_edit.php
@@ -82,7 +82,6 @@ if (isset($id) && $a_filter[$id]) {
$pconfig['dstbeginport'], $pconfig['dstendport']);
$pconfig['disabled'] = isset($a_filter[$id]['disabled']);
- $pconfig['tcpflags'] = $a_filter[$id]['tcpflags'];
$pconfig['log'] = isset($a_filter[$id]['log']);
$pconfig['descr'] = $a_filter[$id]['descr'];
@@ -112,15 +111,6 @@ if (isset($_GET['dup']))
unset($id);
if ($_POST) {
-
- $intcpflags = array();
- foreach ($tcpflags as $tcpflag) {
- if ($_POST['tcpflags_' . $tcpflag] == "on")
- $intcpflags[] = $tcpflag;
- else if ($_POST['tcpflags_' . $tcpflag] == "off")
- $intcpflags[] = "!" . $tcpflag;
- }
- $_POST['tcpflags'] = join(",", $intcpflags);
if (($_POST['proto'] != "tcp") && ($_POST['proto'] != "udp") && ($_POST['proto'] != "tcp/udp")) {
$_POST['srcbeginport'] = 0;
@@ -298,8 +288,6 @@ if ($_POST) {
$filterent['gateway'] = $_POST['gateway'];
}
- $filterent['tcpflags'] = $_POST['tcpflags'];
-
if (isset($id) && $a_filter[$id])
$a_filter[$id] = $filterent;
else {
@@ -308,7 +296,7 @@ if ($_POST) {
else
$a_filter[] = $filterent;
}
-
+
write_config();
touch($d_filterconfdirty_path);
@@ -821,28 +809,6 @@ Hint: the difference between block and reject is that with reject, a packet (TCP
</td>
</tr>
<tr>
- <td width="22%" valign="top" class="vncell">TCP flags</td>
- <td width="78%" class="vtable"> <table border="0" cellspacing="0" cellpadding="0">
- <?php
- $inflags = explode(",", $pconfig['tcpflags']);
- foreach ($tcpflags as $tcpflag): $dontcare = true; ?>
- <tr>
- <td width="40" nowrap><strong>
- <?=strtoupper($tcpflag);?>
- </strong></td>
- <td nowrap> <input type="radio" name="tcpflags_<?=$tcpflag;?>" value="on" <?php if (array_search($tcpflag, $inflags) !== false) { echo "checked"; $dontcare = false; }?>>
- set&nbsp;&nbsp;&nbsp;</td>
- <td nowrap> <input type="radio" name="tcpflags_<?=$tcpflag;?>" value="off" <?php if (array_search("!" . $tcpflag, $inflags) !== false) { echo "checked"; $dontcare = false; }?>>
- cleared&nbsp;&nbsp;&nbsp;</td>
- <td nowrap> <input type="radio" name="tcpflags_<?=$tcpflag;?>" value="" <?php if ($dontcare) echo "checked";?>>
- don't care</td>
- </tr>
- <?php endforeach; ?>
- </table>
- <span class="vexpl">Use this to choose TCP flags that must
- be set or cleared for this rule to match.</span></td>
- </tr>
- <tr>
<td width="22%" valign="top">&nbsp;</td>
<td width="78%">
<input name="Submit" type="submit" class="formbtn" value="Save"> <input type="button" class="formbtn" value="Cancel" onclick="history.back()">
OpenPOWER on IntegriCloud