使用Qt读取原始以太网

时间:2016-04-04 15:44:06

标签: qt network-programming raw-ethernet

我有一个设备发送一个原始(第2层)以太网数据包,我需要使用基于Qt的C ++ Windows应用程序读取和解码。我相信我可以使用winpcap库来实现它,但如果可能的话,我更喜欢Qt方式。

1 个答案:

答案 0 :(得分:1)

Get a raw packet from pcap, wrap into QByteArray, munch on it using QDataStream. Qt doesn't include a replacement for pcap, so that's out of the question.