Module: sems Branch: master Commit: c3bbfd23ca9fa39f9eaa07b3a117876214a353fe URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=c3bbfd23ca9fa39f9eaa07b3a117876214a353fe
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Tue Nov 23 17:07:51 2010 +0100 b2b: some more functions virtual --- core/AmB2BSession.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/AmB2BSession.h b/core/AmB2BSession.h index ffde475..dd97547 100644 --- a/core/AmB2BSession.h +++ b/core/AmB2BSession.h @@ -159,12 +159,12 @@ class AmB2BSession: public AmSession /** hash of body (from o-line) */ uint32_t body_hash; /** save current session description (SDP) */ - void saveSessionDescription(const string& content_type, const string& body); + virtual void saveSessionDescription(const string& content_type, const string& body); /** @return whether session has changed */ - bool updateSessionDescription(const string& content_type, const string& body); + virtual bool updateSessionDescription(const string& content_type, const string& body); /** reset relation with other leg */ - void clear_other(); + virtual void clear_other(); /** Relay one event to the other side. */ virtual void relayEvent(AmEvent* ev); _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
