pcapy
pcapy copied to clipboard
Pcapy is a Python extension module that interfaces with the libpcap packet capture library.
Arch Linux is currently trying to update to python 3.7.0, and while rebuilding all packages in our repositories, pcapy failed the testsuite with the following log: ``` ====================================================================== FAIL: testEOFValue...
The python `select` module supports selecting on objects which provide a `fileno()` method. In order to allow selecting more seamlessly on `Reader` objects, I suggest adding a method like this:...
I have just cloned pcapy and I am getting the following error when trying to compile it: (python36) $ python setup.py build ``` my_init_posix: changing LDSHARED = 'clang++ -bundle -undefined...
Great python module, thanks for making it available to the public. Wondering if you could add an option (defaulted to False) to set immediate mode (no buffering of packets). Several...
I installed pcapy using the source and compiled it. When I set an interface into monitor mode using tcpdump, like `sudo tcpdump -I -i en0 --linktype=IEEE802_11 -e -s 256 type...
PyEval_CallObject is removed from python3.13 use PyObject_CallObject() instead. Issue originally reported [here](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081430)