forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (
- Loading branch information
Showing
4 changed files
with
67 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
Misc/NEWS.d/next/Security/2019-11-21-21-36-54.bpo-37228.yBZnFG.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Due to significant security concerns, the *reuse_address* parameter of | ||
:meth:`asyncio.loop.create_datagram_endpoint` is no longer supported. This is | ||
because of the behavior of ``SO_REUSEADDR`` in UDP. For more details, see the | ||
documentation for ``loop.create_datagram_endpoint()``. | ||
(Contributed by Kyle Stanley, Antoine Pitrou, and Yury Selivanov in | ||
:issue:`37228`.) |