diff options
Diffstat (limited to 'server/connectionIGMP.c')
-rw-r--r-- | server/connectionIGMP.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/connectionIGMP.c b/server/connectionIGMP.c index 53b9acf..695c8bc 100644 --- a/server/connectionIGMP.c +++ b/server/connectionIGMP.c @@ -71,3 +71,9 @@ void cConnectionIGMP::Stop() DELETENULL(m_LiveStreamer); } } + +cString cConnectionIGMP::ToText() const +{ + cString str = cServerConnection::ToText(); + return m_LiveStreamer ? cString::sprintf("%s\t%s", *str, *m_LiveStreamer->ToText()) : str; +} |