class twisted.internet.endpoints.UNIXServerEndpoint: (source)
Implements interfaces: twisted.internet.interfaces.IStreamServerEndpoint
UnixSocket server endpoint.
Method | __init__ | No summary |
Method | listen | Implement IStreamServerEndpoint.listen to listen on a UNIX socket. |
Instance Variable | _reactor | Undocumented |
Instance Variable | _address | Undocumented |
Instance Variable | _backlog | Undocumented |
Instance Variable | _mode | Undocumented |
Instance Variable | _wantPID | Undocumented |
Parameters | reactor | An IReactorUNIX provider. |
address | The path to the Unix socket file, used when listening | |
backlog | number of connections to allow in backlog. | |
mode | mode to set on the unix socket. This parameter is deprecated. Permissions should be set on the directory which contains the UNIX socket. | |
wantPID | If True, create a pidfile for the socket. |
Implement IStreamServerEndpoint.listen
to listen on a UNIX socket.