From a7516d000029195706c198e5f3373cee16729249 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Mon, 12 Mar 2012 16:48:22 +0100 Subject: [PATCH] b/f: on RTP timeout, end dialog with sending BYE --- core/AmSession.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/AmSession.cpp b/core/AmSession.cpp index 7721216b..5f45a577 100644 --- a/core/AmSession.cpp +++ b/core/AmSession.cpp @@ -1106,7 +1106,8 @@ void AmSession::onSendReply(const AmSipRequest& req, unsigned int code, void AmSession::onRtpTimeout() { - DBG("stopping Session.\n"); + DBG("RTP timeout, stopping Session\n"); + dlg.bye(); setStopped(); }