aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-12-23 01:15:06 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-12-23 01:15:06 +0000
commit45b3e7fc62f7eb221b13cfe0a286d52aade93bc1 (patch)
tree6232d2458ab1947d19ceb4ac0401b781d7305462 /lib
parent29417d162e8c4df02251ea9d80754e9bc2ae0e15 (diff)
downloadenigma2-45b3e7fc62f7eb221b13cfe0a286d52aade93bc1.tar.gz
enigma2-45b3e7fc62f7eb221b13cfe0a286d52aade93bc1.zip
tables: don't retry more than 5*nr times.
Diffstat (limited to 'lib')
-rw-r--r--lib/dvb/esection.cpp12
-rw-r--r--lib/dvb/esection.h3
2 files changed, 14 insertions, 1 deletions
diff --git a/lib/dvb/esection.cpp b/lib/dvb/esection.cpp
index 78db9015..0af62252 100644
--- a/lib/dvb/esection.cpp
+++ b/lib/dvb/esection.cpp
@@ -8,6 +8,16 @@ void eGTable::sectionRead(const __u8 *d)
m_table.flags |= eDVBTableSpec::tfThisVersion;
m_table.version = (d[5]>>1)&0x1F;
+ /* if a section is missing, we retry reading the
+ whole data up to 5 times. if after that the
+ section is still missing, we timeout. */
+ if (m_tries > 5 * (last_section_number+1))
+ {
+ timeout();
+ return;
+ }
+
+ m_tries++;
if (createTable(d[6], d, last_section_number + 1))
{
@@ -44,6 +54,8 @@ RESULT eGTable::start(iDVBSectionReader *reader, const eDVBTableSpec &table)
m_reader = reader;
m_reader->connectRead(slot(*this, &eGTable::sectionRead), m_sectionRead_conn);
+ m_tries = 0;
+
// setup filter struct
eDVBSectionFilterMask mask;
diff --git a/lib/dvb/esection.h b/lib/dvb/esection.h
index 2d71eef8..61182766 100644
--- a/lib/dvb/esection.h
+++ b/lib/dvb/esection.h
@@ -11,6 +11,8 @@ private:
ePtr<iDVBSectionReader> m_reader;
eDVBTableSpec m_table;
+ int m_tries;
+
eTimer *m_timeout;
void sectionRead(const __u8 *data);
@@ -42,7 +44,6 @@ protected:
delete sections[nr];
sections.resize(max);
-
sections[nr] = new Section(data);
avail.insert(nr);