diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-05-04 08:50:20 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-05-04 08:50:20 +0200 |
commit | 5705ffbd2ba1cd6644e7bc7b10686963d3d8ef9f (patch) | |
tree | 0ca2f43b1c5d9e2674e364bd01ba8cdd30dbac74 /device.h | |
parent | 6e0f5287ea4df66847f97489f00f2c8214bad605 (diff) | |
download | vdr-5705ffbd2ba1cd6644e7bc7b10686963d3d8ef9f.tar.gz vdr-5705ffbd2ba1cd6644e7bc7b10686963d3d8ef9f.tar.bz2 |
Now retuning if the received transponder's SDT doesn't contain the expected values for NID and TID
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.h 4.13 2019/05/28 14:47:09 kls Exp $ + * $Id: device.h 4.14 2020/05/04 08:50:20 kls Exp $ */ #ifndef __DEVICE_H @@ -450,6 +450,8 @@ public: ///< Attaches the given filter to this device. void Detach(cFilter *Filter); ///< Detaches the given filter from this device. + const cSdtFilter *SdtFilter(void) const { return sdtFilter; } + cSectionHandler *SectionHandler(void) const { return sectionHandler; } // Common Interface facilities: |