summaryrefslogtreecommitdiff
path: root/ci.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2014-01-15 10:21:48 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2014-01-15 10:21:48 +0100
commitac44e6f2ae245908800a9fefe53828ef05a023d1 (patch)
treee21211e1927e8b63bcb3bed01f6e214f21dd91a7 /ci.c
parent1d869c4b36d1e1a48a9a3acb6bad58f952302cc0 (diff)
downloadvdr-ac44e6f2ae245908800a9fefe53828ef05a023d1.tar.gz
vdr-ac44e6f2ae245908800a9fefe53828ef05a023d1.tar.bz2
Added logging the supported system ids of a CAM
Diffstat (limited to 'ci.c')
-rw-r--r--ci.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ci.c b/ci.c
index 0336a7bf..90903fbd 100644
--- a/ci.c
+++ b/ci.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.c 3.6 2014/01/14 14:36:29 kls Exp $
+ * $Id: ci.c 3.7 2014/01/15 10:20:48 kls Exp $
*/
#include "ci.h"
@@ -723,11 +723,13 @@ void cCiConditionalAccessSupport::Process(int Length, const uint8_t *Data)
switch (Tag) {
case AOT_CA_INFO: {
dbgprotocol("Slot %d: <== Ca Info (%d)", Tc()->CamSlot()->SlotNumber(), SessionId());
+ cString Ids;
numCaSystemIds = 0;
int l = 0;
const uint8_t *d = GetData(Data, l);
while (l > 1) {
uint16_t id = ((uint16_t)(*d) << 8) | *(d + 1);
+ Ids = cString::sprintf("%s %04X", *Ids ? *Ids : "", id);
dbgprotocol(" %04X", id);
d += 2;
l -= 2;
@@ -744,6 +746,7 @@ void cCiConditionalAccessSupport::Process(int Length, const uint8_t *Data)
timer.Set(QUERY_WAIT_TIME); // WORKAROUND: Alphacrypt 3.09 doesn't reply to QUERY immediately after reset
state = 2; // got ca info
}
+ dsyslog("CAM %d: system ids:%s", Tc()->CamSlot()->SlotNumber(), *Ids ? *Ids : " none");
}
break;
case AOT_CA_PMT_REPLY: {