diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-01-23 11:30:00 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-01-23 11:30:00 (GMT) |
commit | 01f5ae7b76236a19c670d107b06b68ccb69f532f (patch) | |
tree | e872de7bc7b973c2de31e5c1f433064de1154706 /Doc/whatsnew/3.6.rst | |
parent | ad9422559fc9845d043009f136ee5019a09bbb7e (diff) | |
download | cpython-01f5ae7b76236a19c670d107b06b68ccb69f532f.zip cpython-01f5ae7b76236a19c670d107b06b68ccb69f532f.tar.gz cpython-01f5ae7b76236a19c670d107b06b68ccb69f532f.tar.bz2 |
Issue #26273: Document TCP_USER_TIMEOUT and TCP_CONGESTION
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index f6c71d3..96fd256 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -1371,6 +1371,9 @@ The socket module now supports the address family (Contributed by Christian Heimes in :issue:`27744` with support from Victor Stinner.) +New Linux constants ``TCP_USER_TIMEOUT`` and ``TCP_CONGESTION`` were added. +(Contributed by Omar Sandoval, issue:`26273`). + socketserver ------------ |