#include <mw/sipobserver.h>
Link against: n/a
class MSIPObserver |
Public Member Functions | |
---|---|
pure virtual void | IncomingRequest(TUint32, CSIPServerTransaction *) |
pure virtual void | TimedOut(CSIPServerTransaction &) |
An interface to be implemented by user of CSIP. Interface allows to be able to receive SIP request from the SIP connection that has not been initialized by the user.
void | IncomingRequest | ( | TUint32 | aIapId, |
CSIPServerTransaction * | aTransaction | |||
) | [pure virtual] |
Parameters | |
---|---|
aIapId | The IapId from which the SIP request was received. |
aTransaction | contains local address, remote address of a SIP message, as well as optional SIP message method, headers and body. The ownership is transferred. |
void | TimedOut | ( | CSIPServerTransaction & | aTransaction | ) | [pure virtual] |
The received SIP request time-outed and it is invalid i.e. cannot be used anymore. This will be called if the user fails to create a SIP connection and does not send an appropriate SIP response.
Parameters | |
---|---|
aTransaction | The time-outed transaction. |