Hi to all,
I'm parsing all the network interfaces using the following example code:

Qt Code:
  1. foreach (const QNetworkInterface &ni, QNetworkInterface::allInterfaces()) {
  2. qDebug() << ni.hardwareAddress();
  3. qDebug() << ni.name();
  4. qDebug() << ni.index();
  5. }
To copy to clipboard, switch view to plain text mode 

but It seems impossible to get know what is the interface.
Need help!!!
Thanks