Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

ip::multicast::leave_group

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.

Examples

Setting the option to leave a multicast group:

boost::asio::ip::udp::socket socket(my_context);
...
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);
Requirements

Header: boost/asio/ip/multicast.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext