| " . $node->{name} . "\n";
if ($oldTime) {
my $delta = $time - $oldTime + 0.1;
printf " %.0f Kbit/sec\n", ($node->{bytes} - $node->{oldBytes}) / $delta * 8 / 1000;
}
print " bytes: " . $node->{bytes} . ", " , $node->{packets} . " packets, "; print "dropped " . $node->{dropped} . ", overlimit " . $node->{overlimit} . "\n"; foreach my $child (@{$node->{children}}) { makeTable($child); } print " |