| 78 | } |
| 79 | |
| 80 | bool StreamThreadRtcpBase::restartStreaming(const int clientID) { |
| 81 | _thread.restartThread(); |
| 82 | |
| 83 | doRestartStreaming(clientID); |
| 84 | |
| 85 | const StreamClient &client = _stream.getStreamClient(clientID); |
| 86 | SI_LOG_INFO("Stream: %d, Restart %s stream to %s:%d", _stream.getStreamID(), |
| 87 | _protocol.c_str(), client.getIPAddressOfStream().c_str(), getStreamSocketPort(clientID)); |
| 88 | return true; |
| 89 | } |
| 90 | |
| 91 | bool StreamThreadRtcpBase::threadExecuteFunction() { |
| 92 | // check do we need to update Device monitor signals |
nothing calls this directly
no test coverage detected