diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-24 20:34:08 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-24 20:34:08 (GMT) |
commit | a43c2f845e59b833b17e45994cd81c631c071236 (patch) | |
tree | 76fcd97361c26474054557e554fc548770431acf /Lib/SocketServer.py | |
parent | d61e3eab449102834406b9026852e1db51de16bb (diff) | |
download | cpython-a43c2f845e59b833b17e45994cd81c631c071236.zip cpython-a43c2f845e59b833b17e45994cd81c631c071236.tar.gz cpython-a43c2f845e59b833b17e45994cd81c631c071236.tar.bz2 |
Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients.
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r-- | Lib/SocketServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index e52dddc..6e1f78a 100644 --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py @@ -5,7 +5,7 @@ This module tries to capture the various aspects of defining a server: For socket-based servers: - address family: - - AF_INET: IP (Internet Protocol) sockets (default) + - AF_INET{,6}: IP (Internet Protocol) sockets (default) - AF_UNIX: Unix domain sockets - others, e.g. AF_DECNET are conceivable (see <socket.h> - socket type: |