是否可以检查我的笔记本电脑是通过 Wi-Fi 还是通过“有线 LAN”连接?在 Windows C++ 中以编程方式?
我需要知道我的 PC 是否通过 WiFi、LAN、VPN 进行通信...我的应用程序会造成沉重的网络负载,并且在某些情况下启动是没有意义的,这就是为什么我需要知道 PC 通过哪个连接与世界通信...
I need to know if my PC is communicating through WiFi, LAN, VPN… My application creates heavy network load and there is no point in launching in certain cases, that is why I need to know through which connection the PC communicates to the world…
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种强力方法可能有效:
其想法是解析 ipconfig/ifconfig 输出。
首先获取您的候选 UP 接口列表(例如 lan0、wlan0)。然后发送一些数据(例如 ping google.com),比较发送数据前后的 Rx 数据包和 tx 数据包数量,您应该能够知道正在使用哪个接口。
希望这有帮助。
One brute force way might works:
The idea is to parse the ipconfig/ifconfig output.
First get a list of UP interfaces (e.g. lan0, wlan0) which are your candidates. Then send some data (e.g. ping google.com), compare the Rx packets and tx packets number before and after sending data and you should be able to get which interface is being used.
Hope this helps.