ipv6_mc_linklocal?()
Returns true for IPv6 multicast link-local scope address. It returns false otherwise.
static VALUE addrinfo_ipv6_mc_linklocal_p(VALUE self) { struct in6_addr *addr = extract_in6_addr(self); if (addr && IN6_IS_ADDR_MC_LINKLOCAL(addr)) return Qtrue; return Qfalse; }