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.
有没有办法在 Windows 平台上使用 Qt 获取网络接口接收/发送的字节数?如果是跨平台的就更好了。
我在 QtNetwork 模块中找不到任何有用的东西。
Qt 可以管理的最低 OSI 模型层是传输层(可能是第 3 层,但我不认为)。您只能获取从/到给定端口的接收/发送字节数。
如果您想“嗅探”界面上的全部流量,您应该使用基于 pcap 的库(Windows 为 winpcap,GNU/Linux 为 libpcap)。