diff options
Diffstat (limited to 'server/connection.h')
-rw-r--r-- | server/connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/connection.h b/server/connection.h index 3c6d9a3..0d51da8 100644 --- a/server/connection.h +++ b/server/connection.h @@ -15,7 +15,6 @@ typedef std::pair<std::string,std::string> tStrStr; class cChannel; class cDevice; -class cSwitchLive; /* Basic capabilities of a straight text-based protocol, most functions virtual to support more complicated protocols */ @@ -34,7 +33,8 @@ private: uint m_WriteBytes; uint m_WriteIndex; - cSwitchLive *m_SwitchLive; + /* Set to this connection's current channel when live TV was interrupted */ + const cChannel *m_SwitchTo; tStrStrMap m_Headers; |