summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-05-15 20:01:10 +0000
committerHenri Herscher <henri@oreka.org>2006-05-15 20:01:10 +0000
commitd3c2260dd67fe80d256869b81812ff1e3171c62f (patch)
tree326f5ae02c18e6ae1d56f686544e4501f71def6f
parent63b53233c75648ca091441f31b743e7f89401e31 (diff)
Changed port timeout from 1 to 10 minutes.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@230 09dcff7a-b715-0410-9601-b79a96267cd0
-rw-r--r--orkaudio/CapturePort.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/orkaudio/CapturePort.cpp b/orkaudio/CapturePort.cpp
index 261b1d5..9dd476d 100644
--- a/orkaudio/CapturePort.cpp
+++ b/orkaudio/CapturePort.cpp
@@ -207,7 +207,7 @@ void CapturePort::AddCaptureEvent(CaptureEventRef eventRef)
bool CapturePort::IsExpired(time_t now)
{
- if((now - m_lastUpdated) > 60) // 1 minute
+ if((now - m_lastUpdated) > (10*60)) // 10 minutes
{
return true;
}