diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2010-11-18 19:05:29 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2010-11-18 19:05:29 +0200 |
commit | 6d5ce9fc90df8c7f27a80348e7362f930d28f987 (patch) | |
tree | d1ce1f6f9c061dd1deff664eb1a313a74fbc2677 /wlantest/wlantest.h | |
parent | d356bd630b6876866ca70e177a2b9eca13fb1e35 (diff) | |
download | external_wpa_supplicant_8_ti-6d5ce9fc90df8c7f27a80348e7362f930d28f987.zip external_wpa_supplicant_8_ti-6d5ce9fc90df8c7f27a80348e7362f930d28f987.tar.gz external_wpa_supplicant_8_ti-6d5ce9fc90df8c7f27a80348e7362f930d28f987.tar.bz2 |
wlantest: Add BSS/STA statistics counters
These counters can be cleared and queried from external programs to
script various testing tasks.
Diffstat (limited to 'wlantest/wlantest.h')
-rw-r--r-- | wlantest/wlantest.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wlantest/wlantest.h b/wlantest/wlantest.h index 18c1ddd..49e468b 100644 --- a/wlantest/wlantest.h +++ b/wlantest/wlantest.h @@ -17,6 +17,7 @@ #include "utils/list.h" #include "common/wpa_common.h" +#include "wlantest_ctrl.h" struct ieee802_11_elems; struct radius_msg; @@ -67,6 +68,7 @@ struct wlantest_sta { u8 rsc_fromds[16 + 1][6]; u8 ap_sa_query_tr[2]; u8 sta_sa_query_tr[2]; + u32 counters[NUM_WLANTEST_STA_COUNTER]; }; struct wlantest_bss { @@ -93,6 +95,7 @@ struct wlantest_bss { u8 igtk[6][16]; int igtk_set[6]; u8 ipn[6][6]; + u32 counters[NUM_WLANTEST_BSS_COUNTER]; }; struct wlantest_radius { |