kamene
kamene copied to clipboard
Pickle packets
Is there any method to send packets over a queue? I can't extract necessary data before pushing it through the queue.
Can you be more specific which queue are you referring to?
multiprocessing.Queue Only picklable objects can be sent over those IPC classes
I faced with the same problem. I have a sniffer process that sniffs for packets and sends them over the Queue. However, during testing I realized that I cannot do this.
Apparently, in scapy for python2, this PR solves the issue: https://github.com/secdev/scapy/pull/537
@zyrikby can you create a PR for this?
@phaethon Sorry, I do not have time now for this.