Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > 2fd65cfca8be4f93366621a20a154e01 > files > 42

perl-Net-Libdnet-0.990.0-1.mga7.armv7hl.rpm

#!/usr/bin/perl
use strict; use warnings;

use Net::Libdnet::Route;

my $h = Net::Libdnet::Route->new;
$h->loop(\&route_show);

sub route_show {
   my ($entry, $data) = @_;
   print "[".$entry->{route_dst}."] -> [".$entry->{route_gw}."]\n";
}