interface documentation
class IReactorUDP(Interface): (source)
Known implementations: twisted.internet.iocpreactor.reactor.IOCPReactor, twisted.internet.posixbase.PosixReactorBase
UDP socket methods.
| Method | listen |
Connects a given DatagramProtocol to the given numeric UDP port. |
def listenUDP(port:
int, protocol: DatagramProtocol, interface: str, maxPacketSize: int) -> IListeningPort:
(source)
¶
Connects a given 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. |
maxint | The maximum packet size to accept. |
| Returns | |
IListeningPort | object which provides IListeningPort. |