class documentation
class RawUDPProtocol(protocol.AbstractDatagramProtocol): (source)
Implements interfaces: twisted.pair.raw.IRawDatagramProtocol
Undocumented
| Method | __init__ |
Undocumented |
| Method | add |
Add a protocol on top of this one. |
| Method | datagram |
Called when a datagram is received. |
| Instance Variable | udp |
Undocumented |
Inherited from AbstractDatagramProtocol:
| Method | __getstate__ |
Undocumented |
| Method | do |
Make sure startProtocol is called. |
| Method | do |
Make sure stopProtocol is called. |
| Method | make |
Make a connection to a transport and a server. |
| Method | start |
Called when a transport is connected to this protocol. |
| Method | stop |
Called when the transport is disconnected. |
| Class Variable | noisy |
Undocumented |
| Instance Variable | num |
Undocumented |
| Instance Variable | transport |
Undocumented |
def datagramReceived(self, data, partial, source, dest, protocol, version, ihl, tos, tot_len, fragment_id, fragment_offset, dont_fragment, more_fragments, ttl):
(source)
¶
Called when a datagram is received.
| Parameters | |
| data | Undocumented |
| partial | Undocumented |
| source | Undocumented |
| dest | Undocumented |
| protocol | Undocumented |
| version | Undocumented |
| ihl | Undocumented |
| tos | Undocumented |
| tot | Undocumented |
| fragment | Undocumented |
| fragment | Undocumented |
| dont | Undocumented |
| more | Undocumented |
| ttl | Undocumented |
| datagram | the bytes received from the transport. |
| addr | tuple of source of datagram. |