[issue44077] IP_RECVTOS option is missing from socket module

2021-12-06 Thread Andrei Kulakov
Change by Andrei Kulakov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue44077] IP_RECVTOS option is missing from socket module

2021-06-20 Thread miss-islington
miss-islington added the comment: New changeset 28fe0159f59a761bf52c1999c8f7cb12d0d12562 by Miss Islington (bot) in branch '3.10': bpo-44077: Expose IP_RECVTOS in the socket module (GH-25992) https://github.com/python/cpython/commit/28fe0159f59a761bf52c1999c8f7cb12d0d12562 --

[issue44077] IP_RECVTOS option is missing from socket module

2021-06-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +25396 pull_request: https://github.com/python/cpython/pull/26815 ___ Python tracker

[issue44077] IP_RECVTOS option is missing from socket module

2021-06-20 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset a317778fd58b1c6b250feffbdb4ecf15e293ef48 by Georg Sauthoff in branch 'main': bpo-44077: Expose IP_RECVTOS in the socket module (GH-25992) https://github.com/python/cpython/commit/a317778fd58b1c6b250feffbdb4ecf15e293ef48 --

[issue44077] IP_RECVTOS option is missing from socket module

2021-05-08 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +24645 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25992 ___ Python tracker

[issue44077] IP_RECVTOS option is missing from socket module

2021-05-08 Thread Georg Sauthoff
New submission from Georg Sauthoff : Currently, the socket module doesn't provide the IP_RECVTOS constant. This constant is needed for receiving the TOS byte (or the DSCP bits) via ancillary data when calling recvmsg() or recvmsg_into(). That means it would be used in a setsockopt() call