I need to get info (mainly link speed (gigabit vs. 10/100)) of the network interface used to exchange UDP packets with a device. I'm using Qt in Windows.
I can get this info using GetAdaptersAddresses; I can check the desired interface given its name or its IP address. But, I first need to know the address used when sending/receiving UDP messages.
I found some hints about how to get this info using "low level" socket functions (example). Is there a way to get this info using QUDPSocket? Do I need to access the low level socket?