[issue31203] socket.IP_PKTINFO is missing from python

2020-05-10 Thread Zackery Spytz
Change by Zackery Spytz : -- versions: +Python 3.9 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31203] socket.IP_PKTINFO is missing from python

2020-05-10 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 4.0 -> 5.0 pull_requests: +19339 stage: commit review -> patch review pull_request: https://github.com/python/cpython/pull/20029 ___ Python tracker

[issue31203] socket.IP_PKTINFO is missing from python

2018-10-03 Thread Michael Felt
Michael Felt added the comment: FYI: define exists on Linux 3.16.0-4-powerpc64 #1 SMP Debian 3.16.7-ckt9-3 (2015-04-23) ppc64 GNU/Linux SunOS 5.11 11.3 Not on AIX -- nosy: +Michael.Felt ___ Python tracker ___

[issue31203] socket.IP_PKTINFO is missing from python

2017-10-20 Thread Ned Deily
Change by Ned Deily : -- nosy: +` stage: -> commit review versions: -Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker ___

[issue31203] socket.IP_PKTINFO is missing from python

2017-10-20 Thread Quentin Dawans
Change by Quentin Dawans : -- nosy: +qdawans ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue31203] socket.IP_PKTINFO is missing from python

2017-08-20 Thread Florian Hedtstück
Changes by Florian Hedtstück : -- pull_requests: +3197 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue31203] socket.IP_PKTINFO is missing from python

2017-08-14 Thread Laurent GUERBY
Laurent GUERBY added the comment: Probable fix in Modules/socketmodule.c after /* IPv4 [gs]etsockopt options */ add: #ifdef IP_PKTINFO PyModule_AddIntMacro(m, IP_PKTINFO); #endif -- ___ Python tracker __

[issue31203] socket.IP_PKTINFO is missing from python

2017-08-14 Thread Laurent GUERBY
New submission from Laurent GUERBY: The constant socket.IP_PKTINFO is missing. Definition on Linux: http://elixir.free-electrons.com/linux/v4.12.7/source/include/uapi/linux/in.h#L96 Exemple code that would benefit from the definition: https://chiliproject.tetaneutral.net/projects/tetaneutral/