I am using Ruby to process some PCAP files. I need to read a complete file and analyze each pcaket.
require 'pcap'
inFile = Pcap::Capture.open_offline("1.pcap")
inFile.loop(-1) do |pkt|
#Process packet.
end
Above code does not exit after reading all the packets. According to the Ruby pcap documentation 'A negative count processes packets forever or until EOF is reached'. What can be the problem here.
domissing from your sample program wasn't the problem, so I just edited it in there for you. Once that bug is fixed, the dump I used worked just fine. So I assume the problem depends upon the specific dump in question. In that case, you may need to contact libpcap developers to see if they can spot a problem with your dump file, but a corrupted dump would be my first guess. – sarnold Feb 6 '11 at 9:18