1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

Added support for Telestar Digibit R1 (Thanks to Dirk Wagner).

This commit is contained in:
Rolf Ahrenberg 2014-11-04 21:02:30 +02:00
parent bde88d78b1
commit aeb8f24474
2 changed files with 4 additions and 2 deletions

View File

@ -70,8 +70,10 @@ VDR Plugin 'satip' Revision History
- Fixed the cable only device detection. - Fixed the cable only device detection.
- Added support for blacklisted sources. - Added support for blacklisted sources.
- Fixed server reuse for active transponders. - Fixed server reuse for active transponders.
- Added a preliminary support for Fritz!WLAN Repeater DVB-C - Added support for Fritz!WLAN Repeater DVB-C
(Thanks to Christian Wick). (Thanks to Christian Wick).
- Added support for Telestar Digibit R1
(Thanks to Dirk Wagner).
- Added a new device status menu. - Added a new device status menu.
- Added a command-line switch for manually defining a - Added a command-line switch for manually defining a
SAT>IP server. SAT>IP server.

View File

@ -29,9 +29,9 @@ cSatipServer::cSatipServer(const char *addressP, const char *descriptionP, const
if (!isempty(*descriptionM)) { if (!isempty(*descriptionM)) {
// These devices contain a session id bug: // These devices contain a session id bug:
// Inverto Airscreen Server IDL 400 ? // Inverto Airscreen Server IDL 400 ?
// Telestar Digibit R1 ?
// Elgato EyeTV Netstream 4Sat ? // Elgato EyeTV Netstream 4Sat ?
if (strstr(*descriptionM, "GSSBOX") || // Grundig Sat Systems GSS.box DSI 400 if (strstr(*descriptionM, "GSSBOX") || // Grundig Sat Systems GSS.box DSI 400
strstr(*descriptionM, "DIGIBIT") || // Telestar Digibit R1
strstr(*descriptionM, "Triax SatIP Converter") // Triax TSS 400 strstr(*descriptionM, "Triax SatIP Converter") // Triax TSS 400
) )
quirkM |= eSatipQuirkSessionId; quirkM |= eSatipQuirkSessionId;