| 90 | |
| 91 | public: |
| 92 | UdpClient() { |
| 93 | m_runningFlag = 0; |
| 94 | m_timeout = 0; |
| 95 | m_DataCallback = NULL; |
| 96 | memset(&m_addr, 0, sizeof(m_addr)); |
| 97 | } |
| 98 | |
| 99 | bool isRunning() { |
| 100 | return m_runningFlag; |
nothing calls this directly
no outgoing calls
no test coverage detected