The code
const boost::asio::ip::address_v4 addr = endpoint.address().to_v4();
const boost::asio::ip::multicast::outbound_interface oif(addr);
this->_socket.set_option(oif);
compiles, but not
const boost::asio::ip::address_v6 addr = endpoint.address().to_v6();
const boost::asio::ip::multicast::outbound_interface oif(addr);
this->_socket.set_option(oif);
It would be nice to have full IPv6-Support.