This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mturon
Recipients mturon
Date 2016-10-27.18:43:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477593822.65.0.620141823972.issue28545@psf.upfronthosting.co.za>
In-reply-to
Content
Just for clarity, the high level bug is that when binding to an interface using AF_PACKET, transmissions work, but receive does not:

    sock = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, ETH_P_IEEE802154)
    sock.bind(("monitor0", ETH_P_IEEE802154))

    sock.send(test_frame)   # transmission works fine
    pkt = sock.recv(127)    # never receives, though C test works fine

The same test written in C that calls ioctl(sockfd, SIOCGIFNAME, &ifr) to lookup ifindex for bind from ifname="monitor0" works fine.
History
Date User Action Args
2016-10-27 18:43:42mturonsetrecipients: + mturon
2016-10-27 18:43:42mturonsetmessageid: <1477593822.65.0.620141823972.issue28545@psf.upfronthosting.co.za>
2016-10-27 18:43:42mturonlinkissue28545 messages
2016-10-27 18:43:42mturoncreate