Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using rdpcap function of Scapy to read a PCAP file. I also use the module described in a link to HTTP support in Scapy which is needed in my case, as I have to retrieve all the HTTP requests and responses and their related packets.

I noticed that parsing a large PCAP file the rdpcap function takes too much time to read it.

Is there a solution to read a pcap file faster?

Thanks

share|improve this question
How big is your pcap file? How long does it take to read it? Is it really too long (even for loading it only once)? How many times do you want to read it (rhetorical question)? – Jan-Philip Gehrcke May 29 '12 at 13:51
My file is greater than 300 MB, I have to launch the Python script more than once. – auino May 29 '12 at 13:56
@auino, what specifically is the problem with the read time? Is it that it takes too long to develop your script when you're parsing a 300MB file every time you make a change, or is there some real-time processing requirement? Also, please give us a sense for what is an acceptable parse time – Mike Pennington May 29 '12 at 14:07
It takes about 1 hours... it's not good, as I have to parse the data just loaded... – auino May 29 '12 at 14:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.