class IReactorUDP(Interface): (source)
Known implementations: twisted.internet.iocpreactor.reactor.IOCPReactor
, twisted.internet.posixbase.PosixReactorBase
Method | listenUDP |
Connects a given DatagramProtocol to the given numeric UDP port. |
DatagramProtocol
to the given numeric UDP port.Parameters | |
port:int | A port number on which to listen. |
protocol:DatagramProtocol | A DatagramProtocol instance which will be connected to the given port. |
interface:str | The local IPv4 or IPv6 address to which to bind; defaults to '', ie all IPv4 addresses. |
maxPacketSize:int | The maximum packet size to accept. |
Returns | |
IListeningPort | object which provides IListeningPort . |