summaryrefslogtreecommitdiff
path: root/server/connectionIGMP.h
diff options
context:
space:
mode:
authorFrank Schmirler <vdr@schmirler.de>2011-11-25 00:24:37 +0100
committerFrank Schmirler <vdr@schmirler.de>2011-11-25 00:24:37 +0100
commit9b91301d943cfbec5208419704cfece84267223d (patch)
treef1fa7c428490eb8ee03cfa26297559c62f4d81c7 /server/connectionIGMP.h
parent7347e24123ec0b852091ec035cabce0e10278a72 (diff)
downloadvdr-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.h2
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;
};