| 39 | StreamThreadBase("HTTP", stream) {} |
| 40 | |
| 41 | StreamThreadHttp::~StreamThreadHttp() { |
| 42 | terminateThread(); |
| 43 | const int streamID = _stream.getStreamID(); |
| 44 | StreamClient &client = _stream.getStreamClient(_clientID); |
| 45 | SI_LOG_INFO("Stream: %d, Destroy %s stream to %s:%d", streamID, _protocol.c_str(), |
| 46 | client.getIPAddressOfStream().c_str(), getStreamSocketPort(_clientID)); |
| 47 | } |
| 48 | |
| 49 | // ========================================================================= |
| 50 | // -- output::StreamThreadBase -------------------------------------------- |
nothing calls this directly
no test coverage detected