UDP socket methods.
Methods
|
|
clientUDP
listenUDP
|
|
clientUDP
|
clientUDP (
self,
remotehost,
remoteport,
localport,
protocol,
interface='',
maxPacketSize=8192,
)
Connects a Protocol instance to a UDP client port.
|
|
listenUDP
|
listenUDP (
self,
port,
factory,
interface='',
maxPacketSize=8192,
)
Connects a given protocol Factory to the given numeric UDP port.
|
|