ipv6_multicast?()
Returns true for IPv6 multicast address (ff00::/8). It returns false otherwise.
static VALUE addrinfo_ipv6_multicast_p(VALUE self) { struct in6_addr *addr = extract_in6_addr(self); if (addr && IN6_IS_ADDR_MULTICAST(addr)) return Qtrue; return Qfalse; }