From ba0b808ec4ca14a90ec0ae3389cd2de636108b8e Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Tue, 26 May 2015 21:18:05 +0300 Subject: [PATCH] Enabled the X_PMT extension for minisatip servers. --- server.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server.c b/server.c index d3f6c67..d1cb3d8 100644 --- a/server.c +++ b/server.c @@ -116,8 +116,11 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char debug3("%s description=%s quirks=%s", __PRETTY_FUNCTION__, *descriptionM, *quirksM); } // These devices support the X_PMT protocol extension - if (strstr(*descriptionM, "OctopusNet")) // Digital Devices OctopusNet + if (strstr(*descriptionM, "OctopusNet") || // Digital Devices OctopusNet + strstr(*descriptionM, "minisatip") // minisatip server + ) { hasCiM = true; + } char *s, *p = strdup(*modelM); char *r = strtok_r(p, ",", &s); while (r) {