Module: sems Branch: master Commit: 7c68003d0428d2493eca19df6881a3e17db4f44a URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=7c68003d0428d2493eca19df6881a3e17db4f44a
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Tue Nov 22 17:29:15 2011 +0100 b/f: fixing commit 2f2f804, renamed handler --- apps/sbc/SBC.cpp | 4 ++-- apps/sbc/SBC.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/sbc/SBC.cpp b/apps/sbc/SBC.cpp index 2ac8f3b..824f735 100644 --- a/apps/sbc/SBC.cpp +++ b/apps/sbc/SBC.cpp @@ -1111,11 +1111,11 @@ void SBCDialog::onNoAck(unsigned int cseq) { AmB2BCallerSession::onNoAck(cseq); } -void SBCDialog::onRemoteUnreachable(const AmSipReply& reply) { +void SBCDialog::onRemoteDisappeared(const AmSipReply& reply) { DBG("Remote unreachable - ending SBC call\n"); onCallStopped(); - AmB2BCallerSession::onRemoteUnreachable(reply); + AmB2BCallerSession::onRemoteDisappeared(reply); } void SBCDialog::onBye(const AmSipRequest& req) diff --git a/apps/sbc/SBC.h b/apps/sbc/SBC.h index 675b2f4..80bf29a 100644 --- a/apps/sbc/SBC.h +++ b/apps/sbc/SBC.h @@ -136,7 +136,7 @@ class SBCDialog : public AmB2BCallerSession, public CredentialHolder void onNoAck(unsigned int cseq); /** handler called when we receive 408/481 */ - void onRemoteUnreachable(const AmSipReply& reply); + void onRemoteDisappeared(const AmSipReply& reply); /** stop call (both legs, CC) */ void stopCall(); _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
