8000 bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR by aeros · Pull Request #17311 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR #17311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Prev Previous commit
Next Next commit
Minor Misc/NEWS improvement
  • Loading branch information
aeros authored Nov 27, 2019
commit 3292cb1c7a590368636d07c456ec67cd84e551b8
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Due to significant security concerns, the *reuse_address* parameter of
:meth:`asyncio.loop.create_datagram_endpoint` is no longer supported. This is
due to the behavior of ``SO_REUSEADDR`` in UDP.
because of the behavior of ``SO_REUSEADDR`` in UDP. For more details, see the
documentation for ``loop.create_datagram_endpoint()``.
0