interface documentation
class IReactorTCP(Interface): (source)
Known implementations: twisted.internet.iocpreactor.reactor.IOCPReactor
, twisted.internet.posixbase.PosixReactorBase
, twisted.internet.testing.MemoryReactor
, twisted.internet.testing.RaisingMemoryReactor
Undocumented
Method | connect |
Connect a TCP client. |
Method | listen |
Connects a given protocol factory to the given numeric TCP/IP port. |
def connectTCP(host:
str
, port: int
, factory: ClientFactory
, timeout: float
= 30.0, bindAddress: Optional[ Tuple[ str, int]]
= None) -> IConnector
:
(source)
¶
Connect a TCP client.
Parameters | |
host:str | A hostname or an IPv4 or IPv6 address literal. |
port:int | a port number |
factory:ClientFactory | a twisted.internet.protocol.ClientFactory instance |
timeout:float | number of seconds to wait before assuming the connection has failed. |
bindOptional[ | a (host, port) tuple of local address to bind to, or None. |
Returns | |
IConnector | An object which provides IConnector . This connector will call various callbacks on the factory when a connection is made, failed, or lost - see ClientFactory docs for details. |
def listenTCP(port:
int
, factory: ServerFactory
, backlog: int
= 50, interface: str
= '') -> IListeningPort
:
(source)
¶
Connects a given protocol factory to the given numeric TCP/IP port.
Parameters | |
port:int | a port number on which to listen |
factory:ServerFactory | a twisted.internet.protocol.ServerFactory instance |
backlog:int | size of the listen queue |
interface:str | The local IPv4 or IPv6 address to which to bind; defaults to '', ie all IPv4 addresses. To bind to all IPv4 and IPv6 addresses, you must call this method twice. |
Returns | |
IListeningPort | an object that provides IListeningPort . |
Raises | |
CannotListenError | as defined here twisted.internet.error.CannotListenError , if it cannot listen on this port (e.g., it cannot bind to the required port number) |