summaryrefslogtreecommitdiffstats
path: root/usr/local/www/wizard.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-01-23 04:30:53 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-01-23 04:30:53 +0000
commit62a48760b38d2e1252858732298256ff008203c2 (patch)
treeccfdfb64596e6ce23d0a70a29ff0e65c66fbface /usr/local/www/wizard.php
parent49fd79aa7ef37645fc5c0f113224202c9b1acdc8 (diff)
downloadpfsense-62a48760b38d2e1252858732298256ff008203c2.zip
pfsense-62a48760b38d2e1252858732298256ff008203c2.tar.gz
MFC 9611
Ticket #792 - fix 6 month old shaper bug that caused erratic speeds and latencies. With a 10Mbit queue and 4 iperf jobs running through it in default and otherL queues, I can get an icmp through in otherH with a mere 25ms additional latency on average.
Diffstat (limited to 'usr/local/www/wizard.php')
-rwxr-xr-xusr/local/www/wizard.php63
1 files changed, 56 insertions, 7 deletions
diff --git a/usr/local/www/wizard.php b/usr/local/www/wizard.php
index ebfb02a..ed10d6a 100755
--- a/usr/local/www/wizard.php
+++ b/usr/local/www/wizard.php
@@ -209,11 +209,6 @@ function enablechange() {
else
$ip = "/";
-if($_GET['xml'] == "traffic_shaper_wizard.xml" or
- $_POST['xml'] == "traffic_shaper_wizard.xml") {
- $ip .= "firewall_shaper.php?remove=true";
-}
-
?>
<a href="<?php echo $ip; ?>"><img border="0" src="./themes/<?= $g['theme']; ?>/images/logo.gif"></a>
@@ -275,6 +270,25 @@ if($_GET['xml'] == "traffic_shaper_wizard.xml" or
if($field['validate'])
echo " onChange='FieldValidate(this.value, \"{$field['validate']}\", \"{$field['message']}\");'";
echo ">\n";
+
+
+
+ } else if ($field['type'] == "inputalias") {
+ if(!$field['dontdisplayname']) {
+ echo "<td width=\"22%\" align=\"right\" class=\"vncellreq\">\n";
+ echo fixup_string($field['name']);
+ echo ":</td>\n";
+ }
+ if(!$field['dontcombinecells'])
+ echo "<td class=\"vtable\">\n";
+
+ echo "<input autocomplete='off' class='formfldalias' id='" . $name . "' name='" . $name . "' value='" . $value . "'";
+ if($field['validate'])
+ echo " onChange='FieldValidate(this.value, \"{$field['validate']}\", \"{$field['message']}\");'";
+ echo ">\n";
+
+
+
} else if($field['type'] == "interfaces_selection") {
$size = "";
$multiple = "";
@@ -294,7 +308,7 @@ if($_GET['xml'] == "traffic_shaper_wizard.xml" or
if($field['add_to_interfaces_selection'] == $value) $SELECTED = " SELECTED";
echo "<option value='" . $field['add_to_interfaces_selection'] . "'" . $SELECTED . ">" . $field['add_to_interfaces_selection'] . "</option>\n";
}
- $interfaces = &$config['interfaces'];
+ $interfaces = $config['interfaces'];
if($field['all_interfaces'] <> "") {
$ints = split(" ", `/sbin/ifconfig -l`);
$interfaces = array();
@@ -446,7 +460,42 @@ if($_GET['xml'] == "traffic_shaper_wizard.xml" or
<br>&nbsp;
</div>
</form>
+<script language="JavaScript">
+<!--
+ if (typeof ext_change != 'undefined') {
+ ext_change();
+ }
+ if (typeof proto_change != 'undefined') {
+ ext_change();
+ }
+ if (typeof proto_change != 'undefined') {
+ proto_change();
+ }
+<?php
+ $isfirst = 0;
+ $aliases = "";
+ $addrisfirst = 0;
+ $aliasesaddr = "";
+ if($config['aliases']['alias'] <> "" and is_array($config['aliases']['alias']))
+ foreach($config['aliases']['alias'] as $alias_name) {
+ if(!stristr($alias_name['address'], ".")) {
+ if($isfirst == 1) $aliases .= ",";
+ $aliases .= "'" . $alias_name['name'] . "'";
+ $isfirst = 1;
+ } else {
+ if($addrisfirst == 1) $aliasesaddr .= ",";
+ $aliasesaddr .= "'" . $alias_name['name'] . "'";
+ $addrisfirst = 1;
+ }
+ }
+?>
+
+ var addressarray=new Array(<?php echo $aliasesaddr; ?>);
+ var customarray=new Array(<?php echo $aliases; ?>);
+
+//-->
+</script>
<script type="text/javascript">
NiftyCheck();
Rounded("div#roundme","all","#333333","#FFFFFF","smooth");
@@ -564,4 +613,4 @@ function is_timezone($elt) {
return !preg_match("/\/$/", $elt);
}
-?>
+?> \ No newline at end of file
OpenPOWER on IntegriCloud