1. dgram: added setMulticastInterface() · …

    https://github.com/nodejs/node/commit/b24ee68133162f72ea942d09fa...

    Add wrapper for uv's uv_udp_set_multicast_interface which provides the sender side mechanism to explicitly select an interface. The equivalent receiver side mechanism ...

  2. C - choose interface for UDP/multicast socket - Stack …

    https://stackoverflow.com/questions/12681097

    I am trying to modify a multicast listener / sender example to bind the UDP / multicast socket to a specific interface and not using the INADDR_ANY macro. I possess ...

    • Code sample

      addr.sin_family = AF_INET;
      addr.sin_addr.s_addr = htonl(INADDR_ANY);
      addr.sin_port = htons(port);
      mreq.imr_multiaddr.s_addr = inet_addr(group);
      mreq.imr_interface.s_addr = inet_addr(my_ipv4Addr);...
  3. Using Multicast - Programming Interfaces Guide - Oracle

    https://docs.oracle.com/cd/E23824_01/html/821-1602/sockets-137.html

    Using Multicast. IP multicasting is ... If the sending host belongs to the destination group on another interface, a multicast datagram sent with an initial hop limit ...

  4. Re: How to set interface for Multicast server

    archive.ncsa.illinois.edu/lists/iperf-users/feb04/msg00044.html

    Subject: Re: How to set interface for Multicast server ? From: Kevin ... server to a multicast address on a specific network interface on > machines that have ...

  5. dgram: setMulticastInterface() outgoing interface ...

    https://github.com/nodejs/node/pull/7855/commits/5a8c8b2ee533353f...

    -Sets the outgoing multicast interface using the provided IP. For IPv6, the addresses should use explicit scope to indicate the interface, as in the following example ...

  6. MulticastSocket.setInterface - msdn.microsoft.com

    https://msdn.microsoft.com/en-us/library/aa284923(vs.60).aspx

    Methods MulticastSocket.setInterface. MulticastSocket.setInterface. ... Set the outgoing network interface for multicast packets on this socket, ...

  7. java - MulticastSocket.setInterface in multi interface ...

    https://stackoverflow.com/questions/11172455

    I have a machine with two network interface cards. I was wondering if I want to send out a multicast message to one of the LANs - is it mandatory to use the machine's ...

  8. Chapter 2 Socket Interfaces (Network Interface Guide)

    Chapter 2 Socket Interfaces. ... join the same group on more than one interface. Specify imr_interface to be in6addr_any to choose the default multicast interface, ...

  9. PHP: socket_get_option - Manual

    php.net/manual/ru/function.socket-get-option.php

    The socket_get_option() ... (can only be used in socket_set_option()) IP_MULTICAST_IF: The outgoing interface for IPv4 multicast packets.

  10. MulticastSocket (Java Platform SE 7 b123)

    download.java.net/jdk7/.../b123/docs/api/java/net/MulticastSocket.html

    Multiple MulticastSocket's may subscribe to a multicast group and ... Set the multicast network interface used by methods whose behavior would be affected by the ...