mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
[3.12] gh-64414: mention AF_INET6 and IPv6 in socketserver docs. (GH-129866) (#129869)
gh-64414: mention AF_INET6 and IPv6 in socketserver docs. (GH-129866)
mention AF_INET6 and IPv6 in socketserver docs.
(cherry picked from commit 5ce70ad129)
Co-authored-by: Gregory P. Smith <greg@krypto.org>
This commit is contained in:
parent
5c527f8ddc
commit
d42eba880e
1 changed files with 5 additions and 2 deletions
|
|
@ -260,8 +260,11 @@ Server Objects
|
|||
|
||||
.. attribute:: address_family
|
||||
|
||||
The family of protocols to which the server's socket belongs.
|
||||
Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`.
|
||||
The family of protocols to which the server's socket belongs. Common
|
||||
examples are :const:`socket.AF_INET`, :const:`socket.AF_INET6`, and
|
||||
:const:`socket.AF_UNIX`. Subclass the TCP or UDP server classes in this
|
||||
module with class attribute ``address_family = AF_INET6`` set if you
|
||||
want IPv6 server classes.
|
||||
|
||||
|
||||
.. attribute:: RequestHandlerClass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue