Question

I'm new to network programming in C++ and I'm writing a very simple app that is suppose to do a multicast.

From my research I see one of the first things I need to do is find out if my router supports multicast forwarding and multicast routing protocols.

My point of confusion is, I am connected to the internet via a mobile hotspot device, and I don't exactly know how to find out if it supports multicasting.

Does anyone know how I can go about finding out if I can indeed send multicasts with this type of wireless connection?

Thanks

Was it helpful?

Solution

I found that on a linux box (that supports ifconfig) you can use the ifconfig command to see if multicast is supported. eth0 for example will show Multicast along with some other information.

For windows in the command line:

netsh interface ip show joins

should tell you

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top