diff options
author | Frank Schmirler <vdr@schmirler.de> | 2011-11-25 00:24:37 +0100 |
---|---|---|
committer | Frank Schmirler <vdr@schmirler.de> | 2011-11-25 00:24:37 +0100 |
commit | 9b91301d943cfbec5208419704cfece84267223d (patch) | |
tree | f1fa7c428490eb8ee03cfa26297559c62f4d81c7 /server/connectionIGMP.h | |
parent | 7347e24123ec0b852091ec035cabce0e10278a72 (diff) | |
download | vdr-plugin-streamdev-9b91301d943cfbec5208419704cfece84267223d.tar.gz vdr-plugin-streamdev-9b91301d943cfbec5208419704cfece84267223d.tar.bz2 |
Don't keep a pointer to the connection in components MulticastGroup
structure as the connection may now be deleted from outside via menu.
Diffstat (limited to 'server/connectionIGMP.h')
-rw-r--r-- | server/connectionIGMP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/connectionIGMP.h b/server/connectionIGMP.h index 1faa51d..255379b 100644 --- a/server/connectionIGMP.h +++ b/server/connectionIGMP.h @@ -29,13 +29,13 @@ public: bool SetChannel(cChannel *Channel, in_addr_t Dst); virtual void Welcome(void); virtual cString ToText() const; - void Stop(); /* Not used here */ virtual bool Command(char *Cmd) { return false; } virtual void Attach(void) { if (m_LiveStreamer != NULL) m_LiveStreamer->Attach(); } virtual void Detach(void) { if (m_LiveStreamer != NULL) m_LiveStreamer->Detach(); } + virtual bool Close(void); virtual bool Abort(void) const; }; |