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:
jim-p 2011-09-06 13:28:26 -04:00
parent 20a35f9272
commit da2bee021a

View File

@ -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;
}