mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 04:52:59 +02:00
Das kleine AJAX-Bandbreitenmeter gefixt. Zeigte zu hohe Werte aufgrund eines Berechnungsfehlers an und die XML-Schnittstelle wurde nicht korrekt angesprochen.
Bootsplash-Bilder entfernt. Snort-Scripte nochmal getestet. Laedt die Updates korrekt und wird auch korrekt gestartet. Snortctrl geschrieben, welche noch nicht aufgerufen wird. Grub-Patch verschoben. Clamav-Update. CDRom-Auswurf getestet. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@606 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -52,10 +52,10 @@ if(( $rxb_diff == $rxb_now ) && ( $txb_diff == $txb_now ))
|
||||
else
|
||||
{
|
||||
$rx_kbs = $rxb_diff / 1024;
|
||||
$rx_kbs = $rx_kbs / 2.2;
|
||||
$rx_kbs = $rx_kbs / 3.2;
|
||||
$rx_kbs = int($rx_kbs);
|
||||
$tx_kbs = $txb_diff / 1024;
|
||||
$tx_kbs = $tx_kbs / 2.2;
|
||||
$tx_kbs = $tx_kbs / 3.2;
|
||||
$tx_kbs = int($tx_kbs);
|
||||
}
|
||||
|
||||
|
||||
@@ -202,7 +202,7 @@ END
|
||||
document.forms['speed'].rxkb.value = root2_node.firstChild.data;
|
||||
|
||||
// document.getElementsByTagName("input")[0].style.color = "#00FF00";
|
||||
url = "/cgi/bin/speed.cgi?rxb_last=" + root3_node.firstChild.data + "&txb_last=" + root4_node.firstChild.data;
|
||||
url = "/cgi-bin/speed.cgi?rxb_last=" + root3_node.firstChild.data + "&txb_last=" + root4_node.firstChild.data;
|
||||
|
||||
window.setTimeout("LoadInetInfo(url)", 3000);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user