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

Method isSiteLocalMC

MonaBase/sources/IPAddress.cpp:267–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265 return (ntohs(words[0]) & 0xFFEF) == 0xFF02;
266 }
267 bool isSiteLocalMC() const {
268 const UInt16* words = reinterpret_cast<const UInt16*>(&_addr);
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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected