diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-24 20:34:08 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-24 20:34:08 +0000 |
commit | b6da0006ca816d503f6b791daed9d2f96891da8f (patch) | |
tree | 6cda5178935f8fffe319aec90147c20d0834d31f /Lib/SocketServer.py | |
parent | 1d86081cd47b20f4a35224a9b494e06a65a25f25 (diff) | |
download | cpython-b6da0006ca816d503f6b791daed9d2f96891da8f.tar.gz |
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 e52dddc3b2..6e1f78ae1e 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: |