class documentation
class Base(protocol.DatagramProtocol): (source)
Known subclasses: twisted.protocols.sip.Proxy
Base class for SIP clients and servers.
| Method | __init__ |
Undocumented |
| Method | add |
Undocumented |
| Method | datagram |
Called when a datagram is received. |
| Method | deliver |
Deliver response. |
| Method | handle |
Override to define behavior for requests received |
| Method | handle |
Override to define behavior for responses received. |
| Method | response |
Create a response to a request message. |
| Method | send |
Send a message. |
| Class Variable | debug |
Undocumented |
| Instance Variable | messages |
Undocumented |
| Instance Variable | parser |
Undocumented |
| Method | _fixup |
Undocumented |
Inherited from DatagramProtocol:
| Method | connection |
Called due to error from write in connected mode. |
| Method | log |
Return a prefix matching the class name, to identify log messages related to this protocol instance. |
| Instance Variable | transport |
The transport with which this protocol is associated, if it is associated with one. |
Inherited from AbstractDatagramProtocol (via DatagramProtocol):
| 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 |
Called when a datagram is received.
| Parameters | |
| data | Undocumented |
| addr | tuple of source of datagram. |
| datagram | the bytes received from the transport. |
overridden in
twisted.protocols.sip.ProxyDeliver response.
Destination is based on topmost Via header.
overridden in
twisted.protocols.sip.ProxyOverride to define behavior for requests received
| Parameters | |
| message:Message | Undocumented |
| addr:tuple | Undocumented |
overridden in
twisted.protocols.sip.ProxyOverride to define behavior for responses received.
| Parameters | |
| message:Message | Undocumented |
| addr:tuple | Undocumented |