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:
std::experimental::net::ip::udp::socket socket(io_context); ... std::experimental::net::ip::address multicast_address = std::experimental::net::ip::address::from_string("225.0.0.1"); std::experimental::net::ip::multicast::leave_group option(multicast_address); socket.set_option(option);