From 2ed490e7caf3042ebf26e69420c6ef32bcea848e Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Mon, 26 Apr 2010 16:30:14 +0000 Subject: [PATCH] - send_200_ack now clears the transaction entry from uas_trans. git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1828 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/AmSipDialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/AmSipDialog.cpp b/core/AmSipDialog.cpp index 304b7b8b..79808d50 100644 --- a/core/AmSipDialog.cpp +++ b/core/AmSipDialog.cpp @@ -701,5 +701,7 @@ int AmSipDialog::send_200_ack(const AmSipTransaction& t, if (SipCtrlInterface::send(req)) return -1; + uas_trans.remove(t.cseq); + return 0; }