Networking TS

PrevUpHomeNext

ip::multicast::outbound_interface

Socket option for local interface to use for outgoing multicast packets.

typedef implementation_defined outbound_interface;

Implements the IPPROTO_IP/IP_MULTICAST_IF socket option.

Examples

Setting the option:

std::experimental::net::ip::udp::socket socket(io_context);
...
std::experimental::net::ip::address_v4 local_interface =
  std::experimental::net::ip::address_v4::from_string("1.2.3.4");
std::experimental::net::ip::multicast::outbound_interface option(local_interface);
socket.set_option(option);

PrevUpHomeNext