mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Also show queues on limiter info page, so that the child queues of limiter pipes can be viewed. (See ticket #1843)
This commit is contained in:
parent
20a35f9272
commit
da2bee021a
@ -49,7 +49,13 @@ if($_REQUEST['getactivity']) {
|
||||
$text = `/sbin/ipfw pipe show`;
|
||||
if($text == "")
|
||||
$text = "We could not find any limiters on this system.";
|
||||
echo "Limiters:\n";
|
||||
echo $text;
|
||||
$text = `/sbin/ipfw queue show`;
|
||||
if($text != "") {
|
||||
echo "\n\nQueues:\n";
|
||||
echo $text;
|
||||
}
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user