From a2411210dd0341d640d97983787be8958830f284 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Fri, 3 Jul 2009 15:14:08 +0000 Subject: [PATCH] make cseq method available in AmSipReply::method git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1441 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/sipctrl/SipCtrlInterface.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/core/plug-in/sipctrl/SipCtrlInterface.cpp b/core/plug-in/sipctrl/SipCtrlInterface.cpp index a9921b25..9fff999f 100644 --- a/core/plug-in/sipctrl/SipCtrlInterface.cpp +++ b/core/plug-in/sipctrl/SipCtrlInterface.cpp @@ -568,6 +568,7 @@ void SipCtrlInterface::handle_sip_reply(sip_msg* msg) reply.body = msg->body.len ? c2stlstr(msg->body) : ""; reply.cseq = get_cseq(msg)->num; + reply.method = c2stlstr(get_cseq(msg)->method_str); reply.code = msg->u.reply->code; reply.reason = c2stlstr(msg->u.reply->reason);