6

我在 Linux 上使用 QT 4.8。

我想编写 UDP 数据报并从特定的网络接口发送。

我有2个接口:

  1. WLAN:IP 192.168.1.77 和 mac 地址
  2. Eth:IP 192.168.1.80 和另一个 MAC 地址

当两者都启用时,如何选择其中一个网络接口并从那里写入数据报?

4

2 回答 2

7

简短的回答是,绑定到 eth 接口的 *one 地址

Qt 有一个非常干净的。但是当我需要弄脏的时候,我会使用ACE C++ library之类的东西。

无论如何,这里有一些东西可以帮助您入门,但是您应该在 QtCreator 或google中查看更具体的示例:

QUdpSocket socket;

// I am using the eth interface that's associated 
// with IP 192.168.1.77
//
// Note that I'm using a "random" (ephemeral) port by passing 0

if(socket.bind(QHostAddress("192.168.1.77"), 0))
{
  // Send it out to some IP (192.168.1.1) and port (45354).
  qint64 bytesSent = socket.writeDatagram(QByteArray("Hello World!"), 
                                          QHostAddress("192.168.1.1"), 
                                          45354);
  // ... etc ...
}
于 2013-06-21T20:05:52.703 回答
2

如果您使用的是 Qt 5.8 或更高版本,您应该能够使用 QNetworkDatagram 函数之一,如下所示: https ://doc.qt.io/qt-5/qnetworkdatagram.html#setInterfaceIndex

void QNetworkDatagram::setInterfaceIndex(uint index)

其中index与 QNetworkInterface 中的索引匹配:

// List all of the interfaces
QNetworkInterface netint;
qDebug() << "Network interfaces =" << netint.allInterfaces();

这是一个例子:

QByteArray data;
data.fill('c', 20);  // stuff some data in here
QNetworkDatagram netDatagram(data, QHostAddress("239.0.0.1"), 54002);
netDatagram.setInterfaceIndex(2);  // whatever index 2 is on your system
udpSocket->writeDatagram(netDatagram);
于 2019-06-06T22:31:37.900 回答