Module: sems Branch: master Commit: 9893a1b9b1ad7b17cbf4b8095420cfc351774e01 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=9893a1b9b1ad7b17cbf4b8095420cfc351774e01
Author: Raphael Coeffic <[email protected]> Committer: Raphael Coeffic <[email protected]> Date: Thu Jul 14 14:57:26 2011 +0200 fixes onSessionStart/onEarlySessionStart signature --- core/AmB2ABSession.cpp | 4 ++-- core/AmB2ABSession.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/AmB2ABSession.cpp b/core/AmB2ABSession.cpp index 3feaf7b..80fdda3 100644 --- a/core/AmB2ABSession.cpp +++ b/core/AmB2ABSession.cpp @@ -333,7 +333,7 @@ void AmB2ABCalleeSession::onB2ABEvent(B2ABEvent* ev) AmB2ABSession::onB2ABEvent(ev); } -void AmB2ABCalleeSession::onEarlySessionStart(const AmSipReply& rep) { +void AmB2ABCalleeSession::onEarlySessionStart() { DBG("onEarlySessionStart of callee session\n"); connectSession(); is_connected = true; @@ -341,7 +341,7 @@ void AmB2ABCalleeSession::onEarlySessionStart(const AmSipReply& rep) { } -void AmB2ABCalleeSession::onSessionStart(const AmSipReply& rep) { +void AmB2ABCalleeSession::onSessionStart() { DBG("onSessionStart of callee session\n"); if (!is_connected) { is_connected = true; diff --git a/core/AmB2ABSession.h b/core/AmB2ABSession.h index 2db1745..91e56e2 100644 --- a/core/AmB2ABSession.h +++ b/core/AmB2ABSession.h @@ -243,8 +243,8 @@ class AmB2ABCalleeSession: public AmB2ABSession AmSessionAudioConnector* callers_connector); ~AmB2ABCalleeSession(); - void onEarlySessionStart(const AmSipReply& rep); - void onSessionStart(const AmSipReply& rep); + void onEarlySessionStart(); + void onSessionStart(); void onSipReply(const AmSipReply& rep, AmSipDialog::Status old_dlg_status); protected: _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
