Add scheduled scan driver operations

In new Linux kernel versions (>=3.0), nl80211 adds scheduled scan
capability. In order to use this feature to its full extent, we need
to support it in the wpa_supplicant core, so that it can also be used
by other drivers.

This commit adds initial scheduled scan support operations and events.

Signed-off-by: Luciano Coelho <coelho@ti.com>
This commit is contained in:
Luciano Coelho 2011-09-27 22:21:29 +03:00 committed by Jouni Malinen
parent 5f738a21a6
commit cbdf3507e9
8 changed files with 271 additions and 2 deletions

View file

@ -3331,5 +3331,7 @@ const struct wpa_driver_ops wpa_driver_ndis_ops = {
NULL /* sta_assoc */,
NULL /* sta_auth */,
NULL /* add_tspec */,
NULL /* add_sta_node */
NULL /* add_sta_node */,
NULL /* sched_scan */,
NULL /* stop_sched_scan */
};