DMRAccessControl: add per-slot dstid, src id and time

This commit is contained in:
Simon
2016-10-17 13:59:52 +01:00
parent 9f65e2f4ef
commit 715369e06e
3 changed files with 21 additions and 17 deletions

View File

@@ -28,7 +28,7 @@ public:
static unsigned int dstIdRewrite(unsigned int id, unsigned int sid, unsigned int slot, bool network, CDMRLC* dmrLC);
static void setOverEndTime();
static void setOverEndTime(unsigned int slot);
private:
static std::vector<unsigned int> m_dstBlackListSlot1RF;
@@ -55,10 +55,13 @@ private:
static bool validateSrcId(unsigned int id);
static time_t m_time;
static time_t m_time[2];
static unsigned int m_dstRewriteIDslot1;
static unsigned int m_srcIDslot1;
static unsigned int m_dstRewriteID[2];
static unsigned int m_srcID[2];
static unsigned int m_dstRewriteID;
static unsigned int m_srcID;
static bool m_tgRewriteSlot1;
static bool m_tgRewriteSlot2;