| 257 | int Acquire () { return ++m_RefCounter; }; |
| 258 | int Release () { return --m_RefCounter; }; |
| 259 | int GetRefCounter () const { return m_RefCounter; }; |
| 260 | |
| 261 | // streaming |
| 262 | std::shared_ptr<i2p::stream::StreamingDestination> CreateStreamingDestination (uint16_t port, bool gzip = true); // additional |
no outgoing calls
no test coverage detected