| 170 | uint32_t GetClientServerIP() const noexcept { return m_clientServerIP; } |
| 171 | void SetClientServerIP(uint32_t serverIP) noexcept { m_clientServerIP = serverIP; } |
| 172 | uint16_t GetClientServerPort() const noexcept { return m_clientServerPort; } |
| 173 | void SetClientServerPort(uint16_t port) noexcept { m_clientServerPort = port; } |
| 174 | int GetClientsCount() const { return ((GetClientID() && GetClientPort()) ? 1 : 0) + m_clients.size(); } |
| 175 |
no outgoing calls
no test coverage detected