dobriain has asked for the wisdom of the Perl Monks concerning the following question:

I have a very large pcap capture file and have used Net::Analysis to look through the packets, however I do not appear to be able to use this module to get the arrival times which must be in the pcap file as wireshark accesses them. Any ideas how I can get the arrival time for packets from pcap files.

Replies are listed 'Best First'.
Re: Inter-arrival time
by Anonymous Monk on Mar 08, 2008 at 14:23 UTC
Re: Inter-arrival time
by jjarmoc (Initiate) on Mar 09, 2008 at 00:25 UTC
    Take a look at $pkt->{time}
      how do I use the $pkt->{time} as you suggest. Is it part of Net::Pcap or NetPacket ?