blob: 91d3eef6960c14cacc028e453e5f02e02baf19ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __dvbci_dvbci_camgr_h
#define __dvbci_dvbci_camgr_h
#include <vector>
#include <lib/dvb_ci/dvbci_session.h>
class eDVBCICAManagerSession: public eDVBCISession
{
enum {
stateFinal=statePrivate,
};
std::vector<uint16_t> caids;
int receivedAPDU(const unsigned char *tag, const void *data, int len);
int doAction();
public:
eDVBCICAManagerSession(eDVBCISlot *tslot);
~eDVBCICAManagerSession();
const std::vector<uint16_t> &getCAIDs() const { return caids; }
int sendCAPMT(unsigned char *pmt, int len);
};
#endif
|