From 446ff886bab6a3a2742e7f65c149c47b77f35598 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Thu, 15 Apr 2010 13:01:11 +0000 Subject: [PATCH] also pass trans_ticket to UA for ACKs (aborted otherwise) git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1785 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/sip/trans_layer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/sip/trans_layer.cpp b/core/sip/trans_layer.cpp index ea635a43..8a897527 100644 --- a/core/sip/trans_layer.cpp +++ b/core/sip/trans_layer.cpp @@ -1024,7 +1024,8 @@ void trans_layer::received_msg(sip_msg* msg) // the UA. assert(ua); DBG("Passing ACK to the UA.\n"); - ua->handle_sip_request(NULL,msg); + trans_ticket tt(t,bucket); + ua->handle_sip_request(&tt,msg); DROP_MSG; }