- or download this
# Instanciate object, will start capturing from network
my $dump = Net::Packet::Dump->new(
...
do_stuff($frame);
}
}
- or download this
bless(Net::Packet::netpacket_pcap_fp($self->_pcapd), 'IO::File')
- or download this
FILE * netpacket_pcap_fp(pcap_t *pd){
if (pd == NULL) return(0);
else return(pd->sf.rfile);
}
- or download this
'_pcapd' => pcap_tPtr=SCALAR(0x896dde8)
-> 144211632
- or download this
struct pcap_sf {
FILE *rfile;
...
struct pcap_sf sf;
...
};