show streams per local destination

This commit is contained in:
orignal 2014-10-11 18:21:52 -04:00
parent 2ab597be20
commit 6d6c81bf8b
4 changed files with 22 additions and 8 deletions

View file

@ -77,6 +77,11 @@ namespace stream
bool m_IsPublic;
std::function<void (Stream *)> m_Acceptor;
public:
// for HTTP only
const decltype(m_Streams)& GetStreams () const { return m_Streams; };
};
class StreamingDestinations