From 21da96308d73458deaa121e1b7a1ce712273c82a Mon Sep 17 00:00:00 2001 From: schmirl Date: Thu, 13 Mar 2008 16:01:17 +0000 Subject: Make sure that a FilterStreamer is only started if client supports it (#261) Modified Files: client/socket.c server/connectionVTP.c server/connectionVTP.h --- client/socket.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'client') diff --git a/client/socket.c b/client/socket.c index 5db6efe..f349e71 100644 --- a/client/socket.c +++ b/client/socket.c @@ -1,5 +1,5 @@ /* - * $Id: socket.c,v 1.8 2007/04/24 10:57:34 schmirl Exp $ + * $Id: socket.c,v 1.9 2008/03/13 16:01:17 schmirl Exp $ */ #include @@ -140,8 +140,14 @@ bool cClientSocket::CheckConnection(void) { return false; } - isyslog("Streamdev: Connected to server %s:%d using capabilities TSPIDS", - RemoteIp().c_str(), RemotePort()); + const char *Filters = ""; +#if VDRVERSNUM >= 10300 + if(Command("CAPS FILTERS", 220)) + Filters = ",FILTERS"; +#endif + + isyslog("Streamdev: Connected to server %s:%d using capabilities TSPIDS%s", + RemoteIp().c_str(), RemotePort(), Filters); return true; } -- cgit v1.2.3