show queue size

This commit is contained in:
orignal 2014-10-18 15:50:34 -04:00
parent fcd3680547
commit 9b3ac19b58
3 changed files with 5 additions and 0 deletions

View file

@ -100,6 +100,8 @@ namespace stream
size_t GetNumSentBytes () const { return m_NumSentBytes; };
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
size_t GetSendQueueSize () const { return m_SentPackets.size (); };
size_t GetReceiveQueueSize () const { return m_ReceiveQueue.size (); };
private: