diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-06-20 20:36:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-20 20:36:21 (GMT) |
commit | 28fe0159f59a761bf52c1999c8f7cb12d0d12562 (patch) | |
tree | 48d763bfc8f243c8ffaa80246534c66f3f159f23 /Doc/whatsnew | |
parent | 5fbccb763ce540c0d07be86660e0357bffc69d76 (diff) | |
download | cpython-28fe0159f59a761bf52c1999c8f7cb12d0d12562.zip cpython-28fe0159f59a761bf52c1999c8f7cb12d0d12562.tar.gz cpython-28fe0159f59a761bf52c1999c8f7cb12d0d12562.tar.bz2 |
bpo-44077: Expose IP_RECVTOS in the socket module (GH-25992)
Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
(cherry picked from commit a317778fd58b1c6b250feffbdb4ecf15e293ef48)
Co-authored-by: Georg Sauthoff <mail@georg.so>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 605cb64..249f0e9 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1219,6 +1219,9 @@ The exception :exc:`socket.timeout` is now an alias of :exc:`TimeoutError`. Add option to create MPTCP sockets with ``IPPROTO_MPTCP`` (Contributed by Rui Cunha in :issue:`43571`.) +Add ``IP_RECVTOS`` option to receive the type of service (ToS) or DSCP/ECN fields +(Contributed by Georg Sauthoff in :issue:`44077`.) + ssl --- |