Update cdextraprotocol.h

This commit is contained in:
narspt 2021-04-14 00:59:43 +01:00 committed by GitHub
parent 94b725f452
commit d01bed9bd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -55,6 +55,15 @@
////////////////////////////////////////////////////////////////////////////////////////
// class
class CDextraStreamCacheItem
{
public:
CDextraStreamCacheItem() {}
~CDextraStreamCacheItem() {}
CDvHeaderPacket m_dvHeader;
};
class CDextraProtocol : public CProtocol
{
public:
@ -101,6 +110,9 @@ protected:
protected:
// time
CTimePoint m_LastKeepaliveTime;
// for queue header caches
std::array<CDextraStreamCacheItem, NB_OF_MODULES> m_StreamsCache;
};
////////////////////////////////////////////////////////////////////////////////////////