interface documentation
class IUDPTransport(Interface): (source)
Known subclasses: twisted.internet.interfaces.IMulticastTransport
Known implementations: twisted.internet.iocpreactor.udp.Port
, twisted.internet.udp.Port
Transport for UDP DatagramProtocols.
Method | connect |
Connect the transport to an address. |
Method | get |
Checks if broadcast is currently allowed on this port. |
Method | get |
Get this port's host address. |
Method | set |
Set whether this port may broadcast. |
Method | stop |
Stop listening on this port. |
Method | write |
Write packet to given address. |
Connect the transport to an address.
This changes it to connected mode. Datagrams can only be sent to this address, and will only be received from this address. In addition the protocol's connectionRefused method might get called if destination is not receiving datagrams.
Parameters | |
host:str | an IP address, not a domain name ('127.0.0.1', not 'localhost') |
port:int | port to connect to. |
Get this port's host address.
Returns | |
IPv4Address | IPv6Address | an address describing the listening port. |
Stop listening on this port.
If it does not complete immediately, will return Deferred
that fires upon completion.
Write packet to given address.
Parameters | |
packet:bytes | Undocumented |
addr:tuple[ | a tuple of (ip, port). For connected transports must be the address the transport is connected to, or None. In non-connected mode this is mandatory. |
Raises | |
twisted.internet.error.MessageLengthError | packet was too long. |