summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2009-07-16 19:22:13 +0000
committerHenri Herscher <henri@oreka.org>2009-07-16 19:22:13 +0000
commitd764c996dab0bb82bf804066153f38b1ad52d065 (patch)
treeb033d2cb22e4a6f82607d3d84f6b17a3a4d207f2
parent4d94cd68ade3d2f1f39a3e64dafa2a5568eac7a1 (diff)
Fixed replay problem where some sessions would not get stopped at the end of replay.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@627 09dcff7a-b715-0410-9601-b79a96267cd0
-rw-r--r--orkaudio/audiocaptureplugins/voip/RtpSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/orkaudio/audiocaptureplugins/voip/RtpSession.cpp b/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
index aec9ba2..83632c2 100644
--- a/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
+++ b/orkaudio/audiocaptureplugins/voip/RtpSession.cpp
@@ -2463,7 +2463,7 @@ void RtpSessions::ReportRtpPacket(RtpPacketInfoRef& rtpPacket)
void RtpSessions::StopAll()
{
- time_t forceExpiryTime = time(NULL) + 2*DLLCONFIG.m_rtpSessionWithSignallingInitialTimeoutSec;
+ time_t forceExpiryTime = time(NULL) + 2*DLLCONFIG.m_rtpSessionOnHoldTimeOutSec;
Hoover(forceExpiryTime);
}