Python Forum
Quick sockets question... - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Networking (https://python-forum.io/forum-12.html)
+--- Thread: Quick sockets question... (/thread-21348.html)



Quick sockets question... - ptrivino - Sep-25-2019

Before I post a code question, let me ask this first: I am trying to use an AF_PACKET socket. The Python docs at https://docs.python.org/3/library/socket.html say that AF_PACKET is "New in version 3.7", however when I try coding it with V3.6.8 is doesn't complain. That said, I can't get it to work (but I also can't get an AF_INET socket to work, in certain circumstances).

So my quick question is: can anyone tell me definitively that AF_PACKET will not work in v3.6.8? (Getting 3.7 is not impossible, but not trivial).

Thank you.


RE: Quick sockets question... - Gribouillis - Sep-26-2019

AF_PACKET is already in the 3.6 documentation.


RE: Quick sockets question... - ptrivino - Sep-26-2019

(Sep-26-2019, 05:11 AM)Gribouillis Wrote: AF_PACKET is already in the 3.6 documentation.

So it is, odd they would kinda mark it as 'new' like that. Thanks.