diff options
author | Andrei Otcheretianski <andrei.otcheretianski@intel.com> | 2015-09-08 09:46:26 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2015-10-03 18:07:35 (GMT) |
commit | 2d3943ce5b4c6cb7765ef9dd5c6275179f1d6342 (patch) | |
tree | fb1f6e20667454f93f4bab09c568dcbdb6199189 /wpa_supplicant/driver_i.h | |
parent | c0d94d611834475c7bd27f895fd5412a85c57c6d (diff) | |
download | hostap-2d3943ce5b4c6cb7765ef9dd5c6275179f1d6342.zip hostap-2d3943ce5b4c6cb7765ef9dd5c6275179f1d6342.tar.gz hostap-2d3943ce5b4c6cb7765ef9dd5c6275179f1d6342.tar.bz2 |
nl80211: Specify CSA offsets in send_mlme() driver op
Some management frames contain CSA counters which should be updated by
kernel. Change driver op send_mlme() allowing to send a frame,
specifying an array of offsets to the CSA counters which should be
updated. For example, CSA offsets parameters should be specified when
sending Probe Response frames during CSA period.
Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
Diffstat (limited to 'wpa_supplicant/driver_i.h')
-rw-r--r-- | wpa_supplicant/driver_i.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa_supplicant/driver_i.h b/wpa_supplicant/driver_i.h index 73768c7..f325154 100644 --- a/wpa_supplicant/driver_i.h +++ b/wpa_supplicant/driver_i.h @@ -292,7 +292,7 @@ static inline int wpa_drv_send_mlme(struct wpa_supplicant *wpa_s, if (wpa_s->driver->send_mlme) return wpa_s->driver->send_mlme(wpa_s->drv_priv, data, data_len, noack, - freq); + freq, NULL, 0); return -1; } |