[issue26907] Add missing getsockopt constants

2016-08-23 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker

[issue26907] Add missing getsockopt constants

2016-08-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset ed5f5d490490 by R David Murray in branch 'default': #26907: add some missing getsockopt constants. https://hg.python.org/cpython/rev/ed5f5d490490 -- nosy: +python-dev ___ Python tracker

[issue26907] Add missing getsockopt constants

2016-08-20 Thread Martin Panter
Martin Panter added the comment: Patch looks fine to me. -- stage: -> commit review ___ Python tracker ___

[issue26907] Add missing getsockopt constants

2016-08-20 Thread Christian Heimes
Christian Heimes added the comment: The attached patch adds SO_DOMAIN, SO_PROTOCOL, SO_PEERSEC and SO_PASSSEC. I'd like to get the constants into the stdlib in case Neil's patch won't make it into 3.6. -- keywords: +patch Added file:

[issue26907] Add missing getsockopt constants

2016-06-24 Thread Martin Panter
Martin Panter added the comment: SO_PASSCRED was added to Python 3.3 as part of Issue 6560; it is just missing documentation. -- nosy: +martin.panter ___ Python tracker

[issue26907] Add missing getsockopt constants

2016-06-24 Thread Neil Schemenauer
Neil Schemenauer added the comment: Issue #27377 adds these constants. -- nosy: +nascheme ___ Python tracker ___

[issue26907] Add missing getsockopt constants

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___

[issue26907] Add missing getsockopt constants

2016-05-02 Thread Christian Heimes
New submission from Christian Heimes: The socket doesn't expose some constants for getsockopt() and setsockopt(): Get domain and protocol from socket fd SO_DOMAIN SO_PROTOCOL enable/disable passing of credentials SO_PASSCRED get security context (SELinux context) SO_PEERSEC enable/disable