Home | Libraries | People | FAQ | More |
Socket option to leave a multicast group on a specified interface.
typedef implementation_defined leave_group;
Implements the IPPROTO_IP/IP_DROP_MEMBERSHIP socket option.
Setting the option to leave a multicast group:
boost::asio::ip::udp::socket socket(io_service); ... boost::asio::ip::address multicast_address = boost::asio::ip::address::from_string("225.0.0.1"); boost::asio::ip::multicast::leave_group option(multicast_address); socket.set_option(option);
Header: boost/asio/ip/multicast.hpp
Convenience header: boost/asio.hpp