mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
60 lines
1.2 KiB
C++
60 lines
1.2 KiB
C++
/* DVB CI DateTime Manager */
|
|
#include <stdio.h>
|
|
|
|
#include "dvbci_datetimemgr.h"
|
|
|
|
eDVBCIDateTimeSession::eDVBCIDateTimeSession(tSlot *tslot)
|
|
{
|
|
slot = tslot;
|
|
slot->hasDateTime = true;
|
|
slot->pollConnection = true;
|
|
}
|
|
|
|
eDVBCIDateTimeSession::~eDVBCIDateTimeSession()
|
|
{
|
|
slot->hasDateTime = false;
|
|
}
|
|
|
|
int eDVBCIDateTimeSession::receivedAPDU(const unsigned char *tag, const void *data, int len)
|
|
{
|
|
printf("SESSION(%d)/DATETIME %02x %02x %02x: ", session_nb, tag[0], tag[1], tag[2]);
|
|
for (int i = 0; i < len; i++)
|
|
printf("%02x ", ((const unsigned char*)data)[i]);
|
|
printf("\n");
|
|
|
|
if ((tag[0] == 0x9f) && (tag[1] == 0x84))
|
|
{
|
|
switch (tag[2])
|
|
{
|
|
case 0x40:
|
|
state = stateSendDateTime;
|
|
return 1;
|
|
break;
|
|
default:
|
|
printf("unknown APDU tag 9F 84 %02x\n", tag[2]);
|
|
break;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int eDVBCIDateTimeSession::doAction()
|
|
{
|
|
switch (state)
|
|
{
|
|
case stateStarted:
|
|
return 0;
|
|
case stateSendDateTime:
|
|
{
|
|
unsigned char tag[3] = {0x9f, 0x84, 0x41}; // date_time_response
|
|
unsigned char msg[7] = {0, 0, 0, 0, 0, 0, 0};
|
|
sendAPDU(tag, msg, 7);
|
|
return 0;
|
|
}
|
|
case stateFinal:
|
|
printf("stateFinal und action! kann doch garnicht sein ;)\n");
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|