class documentation
class TCP4ClientEndpoint: (source)
Constructor: TCP4ClientEndpoint(reactor, host, port, timeout, bindAddress)
Implements interfaces: twisted.internet.interfaces.IStreamClientEndpoint
TCP client endpoint with an IPv4 configuration.
Method | __init__ |
No summary |
Method | connect |
Implement IStreamClientEndpoint.connect to connect via TCP. |
Instance Variable | _bind |
Undocumented |
Instance Variable | _host |
Undocumented |
Instance Variable | _port |
Undocumented |
Instance Variable | _reactor |
Undocumented |
Instance Variable | _timeout |
Undocumented |
Parameters | |
reactor | An IReactorTCP provider |
host:str | A hostname, used when connecting |
port:int | The port number, used when connecting |
timeout:float or int | The number of seconds to wait before assuming the connection has failed. |
bind | A (host, port) tuple of local address to bind to, or None. |