Location:
sipobserver.h
class MSIPObserver;
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.
n/a
Defined in MSIPObserver
:
IncomingRequest()
, TimedOut()
virtual void IncomingRequest(TUint32 aIapId, CSIPServerTransaction *aTransaction)=0;
aTransaction != 0
A SIP request has been received from the network. This function is called when the SIP request was received using such an
IAP, for which the application has not created a CSIPConnection
object.
|
virtual void TimedOut(CSIPServerTransaction &aTransaction)=0;
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.
|