fix debug output
[enigma2.git] / lib / dvb_ci / dvbci_camgr.cpp
index 2ad1f1e363bb36c06a31ccd214138e78ae24477c..e1afd17494b41a8b6348620e6c81246821296979 100644 (file)
@@ -2,6 +2,17 @@
 
 #include <lib/dvb_ci/dvbci_camgr.h>
 
+eDVBCICAManagerSession::eDVBCICAManagerSession(eDVBCISlot *tslot)
+{
+       slot = tslot;
+       slot->setCAManager(this);
+}
+
+eDVBCICAManagerSession::~eDVBCICAManagerSession()
+{
+       slot->setCAManager(NULL);
+}
+
 int eDVBCICAManagerSession::receivedAPDU(const unsigned char *tag, const void *data, int len)
 {
        printf("SESSION(%d)/CA %02x %02x %02x: ", session_nb, tag[0], tag[1],tag[2]);
@@ -18,9 +29,10 @@ int eDVBCICAManagerSession::receivedAPDU(const unsigned char *tag, const void *d
                        for (int i=0; i<len; i+=2)
                        {
                                printf("%04x ", (((const unsigned char*)data)[i]<<8)|(((const unsigned char*)data)[i+1]));
-                               caids.insert((((const unsigned char*)data)[i]<<8)|(((const unsigned char*)data)[i+1]));
+                               caids.push_back((((const unsigned char*)data)[i]<<8)|(((const unsigned char*)data)[i+1]));
                        }
                        printf("\n");
+                       slot->resendCAPMT();
                        break;
                default:
                        printf("unknown APDU tag 9F 80 %02x\n", tag[2]);
@@ -47,3 +59,13 @@ int eDVBCICAManagerSession::doAction()
                return 0;
        }
 }
+
+int eDVBCICAManagerSession::sendCAPMT(unsigned char *data, int len)
+{
+       const unsigned char tag[3]={0x9F, 0x80, 0x32}; // ca_pmt
+
+  sendAPDU(tag, data, len);
+       
+       return 0;
+}
+