fixed memory leak

This commit is contained in:
orignal 2014-07-05 08:33:08 -04:00
parent 49035ef55d
commit 73ef5e29c2
2 changed files with 7 additions and 0 deletions

View file

@ -21,6 +21,7 @@ namespace tunnel
public:
TunnelEndpoint (): m_NumReceivedBytes (0) {};
~TunnelEndpoint ();
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
void HandleDecryptedTunnelDataMsg (I2NPMessage * msg);