From f73665a0bd13519591c8acb451c0b884929547e5 Mon Sep 17 00:00:00 2001 From: Frank Schmirler Date: Fri, 3 Jun 2011 13:24:12 +0200 Subject: Server must close the VTP connection also if filter stream is broken Otherwise, if a client which is not livestreaming (e.g. watching a recording) doesn't properly shutdown the port 2004 connection, the filter stream remains open until TCP keepalive takes care of it. In the meantime, the log will show ringbuffer overflows. --- server/connectionVTP.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'server') diff --git a/server/connectionVTP.c b/server/connectionVTP.c index 411f3fd..2719fb4 100644 --- a/server/connectionVTP.c +++ b/server/connectionVTP.c @@ -772,9 +772,10 @@ cConnectionVTP::~cConnectionVTP() delete m_RecPlayer; } -inline bool cConnectionVTP::Abort(void) const +bool cConnectionVTP::Abort(void) const { - return m_LiveStreamer && m_LiveStreamer->Abort(); + return (m_LiveStreamer && m_LiveStreamer->Abort()) || + (m_FilterStreamer && m_FilterStreamer->Abort()); } void cConnectionVTP::Welcome(void) -- cgit v1.2.3