add channelid-check (thx DboxOldie)

This commit is contained in:
max10
2016-06-15 19:55:18 +02:00
parent 0215a673f5
commit ffd0f972f9
3 changed files with 13 additions and 0 deletions

View File

@@ -1285,3 +1285,14 @@ bool cCA::CheckCerts(void)
}
return Cert_OK;
}
bool cCA::checkChannelID(u64 chanID)
{
std::list<tSlot*>::iterator it;
for (it = slot_data.begin(); it != slot_data.end(); ++it)
{
if ((*it)->tpid == chanID && !(*it)->SidBlackListed)
return true;
}
return false;
}