| 75 | uint32_t GetPacketClass() const { return m_PacketId >> 3; } |
| 76 | uint32_t GetPacketType() const { return m_PacketId & 7; } |
| 77 | uint32_t GetLength() const { return m_Length; } |
| 78 | const unsigned char* GetData() const { return m_Data.get(); } |
| 79 | |
| 80 | bool IsEmpty() { return m_Header == 0 && m_Length == 0; } |
no outgoing calls