in reply to Re^3: Module to return signal levels on captured packets
in thread Module to return signal levels on captured packets
#!/usr/bin/perl use strict; use warnings; use Net::Interface; my @all = Net::Interface->interfaces(); print $all[0]->name,"\n"; my @allnames = "@all"; print @allnames,"\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Module to return signal levels on captured packets
by porpoise_paul (Novice) on Jan 05, 2010 at 10:32 UTC | |
by roboticus (Chancellor) on Jan 05, 2010 at 13:36 UTC | |
by porpoise_paul (Novice) on Jan 05, 2010 at 17:56 UTC |