239.255.0.0/16
| 127 | bool isLinkLocalMC() const { return (ntohl(_addr.s_addr) & 0xFF000000) == 0xE0000000; } // 244.0.0.0/24 |
| 128 | bool isSiteLocalMC() const { return (ntohl(_addr.s_addr) & 0xFFFF0000) == 0xEFFF0000; } // 239.255.0.0/16 |
| 129 | bool isOrgLocalMC() const { return (ntohl(_addr.s_addr) & 0xFFFF0000) == 0xEFC00000; } // 239.192.0.0/16 |
| 130 | |
| 131 | bool isGlobalMC() const { |
| 132 | UInt32 addr = ntohl(_addr.s_addr); |
nothing calls this directly
no outgoing calls
no test coverage detected