From c3bbfd23ca9fa39f9eaa07b3a117876214a353fe Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Tue, 23 Nov 2010 17:07:51 +0100 Subject: [PATCH] b2b: some more functions virtual --- core/AmB2BSession.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/AmB2BSession.h b/core/AmB2BSession.h index ffde4750..dd975472 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);