0

我正在编写一个程序(C++),它将在 Windows 操作系统上使用 Wi-fi 检测我周围的设备。
为了做到这一点,我使用了 Netmon API,我需要将无线网络适配器切换到监控模式。
我读到 Netmon 没有为此提供 API,因此我需要使用 WDK 和 NDIS 来完成。

有谁知道如何切换到监控模式?我将不胜感激代码示例。

谢谢。

4

1 回答 1

2

在用户模式下,将无线接口切换到监听模式

WlanSetInterface(
    . . . ,
    wlan_intf_opcode_current_operation_mode,
    DOT11_OPERATION_MODE_NETWORK_MONITOR);
于 2013-10-14T18:48:27.353 回答