don't test failed tunnels

This commit is contained in:
orignal 2014-03-21 18:26:11 -04:00
parent 20369cf6d5
commit 17fcd0c38f
3 changed files with 24 additions and 6 deletions

View file

@ -37,7 +37,7 @@ namespace tunnel
TunnelConfig * GetTunnelConfig () const { return m_Config; }
bool IsEstablished () const { return m_IsEstablished; };
bool IsFailed () const { return m_IsEstablished; };
bool IsFailed () const { return m_IsFailed; };
void SetFailed (bool failed) { m_IsFailed = failed; }
TunnelPool * GetTunnelPool () const { return m_Pool; };