How do I set the socket options on a raw socket to have QDISC_BYPASS enabled? I saw examples in C but wasn't able to understand clearly how to implement it in Python. I constructed the socket with AF_PACKET and SOCK_RAW settings.
I understand that I need to use socket.setsockopt() method but I'm not sure how to call it correctly in this case.