About 14,600 results
Open links in new tab
  1. What does it mean to bind a multicast (UDP) socket?

    May 22, 2012 · When you use a socket to send to a specific multicast IP, the destination MAC address on the ethernet frame is set to the corresponding multicast MAC address for the …

  2. How do I choose a multicast address for my application's use?

    May 28, 2009 · How should I choose an IPv4 multicast address for my application's use? I may need more than one (a whole range perhaps ultimately) but just want to avoid conflicts with …

  3. How to support multicast network in Docker - Stack Overflow

    Aug 8, 2018 · How can I bridge the eth1 to veth1 inside container so that the container could receive the multicast data packages from physical network through eth1 to veth1.

  4. How to do a UDP multicast across the local network in c#?

    May 31, 2013 · I am trying to get some simple UDP communication working on my local network. All i want to do is do a multicast to all machines on the network Here is my sending code …

  5. C++ multiple multicast receiver with boost asio - Stack Overflow

    Sep 14, 2015 · 0 I have to implement a multicast receiver able to join a list of multicast groups and process received data in a specific thread using boost. I did try the following code.....

  6. Wireshark: Filter by Multicast in GUI - Stack Overflow

    Using the Wireshark "Filter" field in the Wireshark GUI, I would like to filter capture results so that only multicast packets are shown. I've seen this post but that doesn't work for the GUI fil...

  7. c# - Specifying what network interface an UDP multicast should …

    Sep 12, 2013 · Using C# Sockets, Windows seems to try to route the message over the WLAN adapter every time. Is there a way to specify what network interface to send a UDP multicast on?

  8. c++ - How to set up a socket for UDP multicast with 2 network …

    I'm trying to get udp multicast data using sockets and c++ (c). I have a server with 2 network cards so I need to bind socket to specific interface. Currently I'm testing on another server that …

  9. C - choose interface for UDP/multicast socket - Stack Overflow

    Oct 2, 2012 · When binding a socket for receiving multicast traffic, if you bind to a local address, this prevents multicast packets from being received on non-Windows systems.

  10. How do you UDP multicast in Python? - Stack Overflow

    Nov 28, 2018 · How do you send and receive UDP multicast in Python? Is there a standard library to do so?