00001 #include "Headers.h"
00002 #include "LayerIpMcastMembership.h"
00003
00004 void CLayerIpMcastMembership::Join(__uint32 entry)
00005 {
00006 assert(NON_MEMBER == this->state);
00007
00008 this->state = MEMBER;
00009 this->entry = entry;
00010 }
00011
00012 void CLayerIpMcastMembership::Leave()
00013 {
00014 assert(MEMBER == this->state);
00015
00016 this->state = NON_MEMBER;
00017 }