Enabled the X_PMT extension for minisatip servers.

This commit is contained in:
Rolf Ahrenberg 2015-05-26 21:18:05 +03:00
parent 4e2535a7e2
commit ba0b808ec4
1 changed files with 4 additions and 1 deletions

View File

@ -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) {