Module: sems Branch: sayer/offer_answer Commit: 6e007814b20e83f41649eb0dc2de353040d88bac URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=6e007814b20e83f41649eb0dc2de353040d88bac
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Thu Oct 21 19:18:19 2010 +0200 fix replying 200 to BYE --- apps/auth_b2b/AuthB2B.cpp | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/apps/auth_b2b/AuthB2B.cpp b/apps/auth_b2b/AuthB2B.cpp index 30a5c44..c4f3c67 100644 --- a/apps/auth_b2b/AuthB2B.cpp +++ b/apps/auth_b2b/AuthB2B.cpp @@ -225,6 +225,9 @@ void AuthB2BDialog::onBye(const AmSipRequest& req) if (m_state == BB_Connected) { // stopAccounting(); } + + dlg.reply(req,200,"OK"); + terminateOtherLeg(); setStopped(); } _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
