Home | History | Annotate | Download | only in multiprocessing

Lines Matching defs:socket

39 import socket
64 if hasattr(socket, 'AF_UNIX'):
121 This is a wrapper for a bound socket which is 'listening' for
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
188 s1, s2 = socket.socketpair()
249 Representation of a socket which is bound to an address and listening
252 self._socket = socket.socket(getattr(socket, family))
254 self._socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
259 except socket.error:
288 Return a connection object connected to the socket given by `address`
291 s = socket.socket( getattr(socket, family) )
298 except socket.error, e: