This commit is contained in:
max10
2015-11-20 15:40:19 +01:00
parent 46f67aaef0
commit 8a10609125
6 changed files with 60 additions and 20 deletions

View File

@@ -38,6 +38,8 @@
static const char * FILENAME = "[ca_ci]";
static unsigned int LiveSlot = 0;
static bool CertChecked = false;
static bool Cert_OK = false;
static uint8_t NullPMT[50]={0x9F,0x80,0x32,0x2E,0x03,0x6E,0xA7,0x37,0x00,0x00,0x1B,0x15,0x7D,0x00,0x00,0x03,0x15,0x7E,0x00,0x00,0x03,0x15,0x7F,0x00,
0x00,0x06,0x15,0x80,0x00,0x00,0x06,0x15,0x82,0x00,0x00,0x0B,0x08,0x7B,0x00,0x00,0x05,0x09,0x42,0x00,0x00,0x06,0x15,0x81,0x00,0x00};
@@ -1267,3 +1269,13 @@ bool cCA::SendNullPMT(tSlot* slot)
return true;
}
bool cCA::CheckCerts(void)
{
if(!CertChecked)
{
if (access(ROOT_CERT, F_OK) == 0 && access(ROOT_CERT, F_OK) == 0 && access(ROOT_CERT, F_OK) == 0)
Cert_OK = true;
CertChecked = true;
}
return Cert_OK;
}