| 237 | return (ntohs(words[0]) & 0xFFE0) == 0xFF00; |
| 238 | } |
| 239 | bool isLinkLocal() const { |
| 240 | const UInt16* words = reinterpret_cast<const UInt16*>(&_addr); |
| 241 | return (ntohs(words[0]) & 0xFFE0) == 0xFE80; |
| 242 | } |
| 243 | bool isSiteLocal() const { |
| 244 | const UInt16* words = reinterpret_cast<const UInt16*>(&_addr); |
| 245 | return (ntohs(words[0]) & 0xFFE0) == 0xFEC0; |
nothing calls this directly
no outgoing calls
no test coverage detected