fixed session timer to be aligned to AmSessionEventHandler prototype again

git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@828 8eb893ce-cfd4-0310-b710-fb5ebe64c474
sayer/1.4-spce2.6
Stefan Sayer 19 years ago
parent 36952ca775
commit cf3614c10e

@ -91,6 +91,7 @@ bool SessionTimer::onSendRequest(const string& method,
const string& content_type,
const string& body,
string& hdrs,
int flags,
unsigned int cseq)
{
string m_hdrs = SIP_HDR_COLSP(SIP_HDR_SUPPORTED) "timer" CRLF;
@ -109,7 +110,8 @@ bool SessionTimer::onSendRequest(const string& method,
bool SessionTimer::onSendReply(const AmSipRequest& req,
unsigned int code,const string& reason,
const string& content_type,const string& body,
string& hdrs)
string& hdrs,
int flags)
{
//if (!session_timer_conf.getEnableSessionTimer())
// return "";

@ -106,6 +106,7 @@ class SessionTimer: public AmSessionEventHandler
const string& content_type,
const string& body,
string& hdrs,
int flags,
unsigned int cseq);
virtual bool onSendReply(const AmSipRequest& req,
@ -113,7 +114,8 @@ class SessionTimer: public AmSessionEventHandler
const string& reason,
const string& content_type,
const string& body,
string& hdrs);
string& hdrs,
int flags);
};

Loading…
Cancel
Save