Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过特定的网络接口发送数据
udpSocket->joinMulticastGroup(QHostAddress(Address), QNetworkInterface::interfaceFromName(iface));
但是,数据正在通过另一个网络接口发送。如何强制它通过该接口发送数据?
它使用 SmartSniff 进行测试。
加入多播组是为了接收。
如果您希望您的send()调用在您需要的特定界面上bind()进行。
send()
bind()