summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-04-01 16:42:19 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-04-01 16:42:19 (GMT)
commitb12e79da1b970ba151687524355fa8f5ffe925b4 (patch)
tree6caa49c59e5f3171fb7e1044dff018974d35f314
parentfeab33418d4c12f1dabd02db085273515ffed190 (diff)
downloadcpython-b12e79da1b970ba151687524355fa8f5ffe925b4.zip
cpython-b12e79da1b970ba151687524355fa8f5ffe925b4.tar.gz
cpython-b12e79da1b970ba151687524355fa8f5ffe925b4.tar.bz2
Issue 3270: document Listener address restrictions on windows
-rw-r--r--Doc/library/multiprocessing.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 02f6ac1..5ff94ea 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1705,6 +1705,12 @@ authentication* using the :mod:`hmac` module.
*address* is the address to be used by the bound socket or named pipe of the
listener object.
+ .. note::
+
+ If an address of '0.0.0.0' is used, the address will not be a connectable
+ end point on Windows. If you require a connectable end-point,
+ you should use '127.0.0.1'.
+
*family* is the type of socket (or named pipe) to use. This can be one of
the strings ``'AF_INET'`` (for a TCP socket), ``'AF_UNIX'`` (for a Unix
domain socket) or ``'AF_PIPE'`` (for a Windows named pipe). Of these only