mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 15:02:58 +02:00
25 lines
515 B
C++
25 lines
515 B
C++
#ifndef __dvbci_dvbci_camgr_h
|
|
#define __dvbci_dvbci_camgr_h
|
|
|
|
#include <vector>
|
|
|
|
#include "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(tSlot *tslot);
|
|
~eDVBCICAManagerSession();
|
|
|
|
const std::vector<uint16_t> &getCAIDs() const { return caids; }
|
|
int sendCAPMT(unsigned char *pmt, int len);
|
|
};
|
|
|
|
#endif
|