|
reSIProcate/DialogUsageManager
9694
|


Public Member Functions | |
| virtual void | onSuccess (ClientRegistrationHandle h, const SipMessage &response) |
| Called when registraion succeeds or each time it is sucessfully refreshed. | |
| virtual void | onRemoved (ClientRegistrationHandle) |
| virtual void | onFailure (ClientRegistrationHandle, const SipMessage &response) |
| Called if registration fails, usage will be destroyed (unless a Registration retry interval is enabled in the Profile) | |
Definition at line 31 of file rlsServer.cxx.
| virtual void RlsRegistrationHandler::onFailure | ( | ClientRegistrationHandle | , |
| const SipMessage & | response | ||
| ) | [inline, virtual] |
Called if registration fails, usage will be destroyed (unless a Registration retry interval is enabled in the Profile)
Implements resip::ClientRegistrationHandler.
Definition at line 43 of file rlsServer.cxx.
References InfoLog.
{
InfoLog ( << "Client::Failure: " << response );
exit(-1);
}
| virtual void RlsRegistrationHandler::onRemoved | ( | ClientRegistrationHandle | ) | [inline, virtual] |
Definition at line 39 of file rlsServer.cxx.
{
}
| virtual void RlsRegistrationHandler::onSuccess | ( | ClientRegistrationHandle | , |
| const SipMessage & | response | ||
| ) | [inline, virtual] |
Called when registraion succeeds or each time it is sucessfully refreshed.
Implements resip::ClientRegistrationHandler.
Definition at line 34 of file rlsServer.cxx.
References InfoLog.
{
InfoLog( << "onSuccess: " << response );
}
1.7.5.1