是否可以检查我的笔记本电脑是通过 Wi-Fi 还是通过“有线 LAN”连接?在 Windows C++ 中以编程方式?

发布于 2024-11-28 08:15:25 字数 106 浏览 1 评论 0原文

我需要知道我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾忌 2024-12-05 08:15:25

一种强力方法可能有效:

其想法是解析 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文