allow NTCP2 only transports

This commit is contained in:
orignal 2018-08-10 15:35:43 -04:00
parent ee700ac861
commit a2c41c9e36
2 changed files with 4 additions and 2 deletions

View file

@ -81,6 +81,7 @@ namespace transport
bool IsBoundNTCP() const { return m_NTCPServer != nullptr; }
bool IsBoundSSU() const { return m_SSUServer != nullptr; }
bool IsBoundNTCP2() const { return m_NTCP2Server != nullptr; }
bool IsOnline() const { return m_IsOnline; };
void SetOnline (bool online) { m_IsOnline = online; };