MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / isOrgLocalMC

Method isOrgLocalMC

MonaBase/sources/IPAddress.cpp:271–274  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269 return (ntohs(words[0]) & 0xFFEF) == 0xFF05;
270 }
271 bool isOrgLocalMC() const {
272 const UInt16* words = reinterpret_cast<const UInt16*>(&_addr);
273 return (ntohs(words[0]) & 0xFFEF) == 0xFF08;
274 }
275 bool isGlobalMC() const {
276 const UInt16* words = reinterpret_cast<const UInt16*>(&_addr);
277 return (ntohs(words[0]) & 0xFFEF) == 0xFF0F;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected