summaryrefslogtreecommitdiff
path: root/Lib/SocketServer.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-07-24 20:34:08 +0000
committerMartin v. Löwis <martin@v.loewis.de>2001-07-24 20:34:08 +0000
commitb6da0006ca816d503f6b791daed9d2f96891da8f (patch)
tree6cda5178935f8fffe319aec90147c20d0834d31f /Lib/SocketServer.py
parent1d86081cd47b20f4a35224a9b494e06a65a25f25 (diff)
downloadcpython-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.py2
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: