Matias Fontanini
Matias Fontanini
Unfortunately, I don't have access to macOS so I can't really test this one. Can somebody test this one out?
If you clone the repo, build it manually and then try the same, does the problem still happen?
I don't know too much about macOS but maybe the same issue that gets fixed in linux by running `ldconfig` after you build and install a library? (see https://stackoverflow.com/questions/1451047/ldconfig-equivalent-in-mac-os-x). Are...
You should either run install as root or install it in another user-writable path using `CMAKE_INSTALL_PREFIX`.
It should work. Are you sure you're generating HTTP traffic and not HTTPS?
You could try adding some prints when a packet is processed to see if the problem is that you're not processing packets or something else is broken.
Sounds like you have an issue with WinPcap. Not sure I can help you fix that. Maybe Windows 10 is stricter with permissions?
These type of issues are impossible for me to figure out unless there's an attached pcap file. Did you encounter this again, and if so, did you perform a capture...
`PDU` isn't a `Packet`, this isn't a safe cast. This should be checking the VS version instead. Some older version didn't have enough C++11 support to handle the template types...
As the [documentation states](http://libtins.github.io/docs/latest/d3/dea/classTins_1_1PacketSender.html#a3094e10306fcf70c4943cc126c0d485d) explicitly specifying an interface will only work if you're sending a packet that contains a link layer PDU. When you're sending a l3 packet, the kernel...