diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-07-07 11:49:38 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-07-07 11:49:38 -0700 |
| commit | 412389ec755528108e0254e75a9cf43fc53e331a (patch) | |
| tree | b709372474eeb9ddb959884d72b551cba34674c3 /node/Multicaster.hpp | |
| parent | cf6f30963cdf6de47342e6724ebd7f8e8058ad43 (diff) | |
| download | infinitytier-412389ec755528108e0254e75a9cf43fc53e331a.tar.gz infinitytier-412389ec755528108e0254e75a9cf43fc53e331a.zip | |
Implement ERROR_UNWATNED_MULTICAST
Diffstat (limited to 'node/Multicaster.hpp')
| -rw-r--r-- | node/Multicaster.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/node/Multicaster.hpp b/node/Multicaster.hpp index c6c93b1f..0dd199f9 100644 --- a/node/Multicaster.hpp +++ b/node/Multicaster.hpp @@ -107,6 +107,15 @@ public: void addMultiple(uint64_t now,uint64_t nwid,const MulticastGroup &mg,const void *addresses,unsigned int count,unsigned int totalKnown); /** + * Remove a multicast group member (if present) + * + * @param nwid Network ID + * @param mg Multicast group + * @param member Member to unsubscribe + */ + void remove(uint64_t nwid,const MulticastGroup &mg,const Address &member); + + /** * Append gather results to a packet by choosing registered multicast recipients at random * * This appends the following fields to the packet: |
