diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-08-24 14:23:49 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-08-24 14:23:49 +0000 |
commit | 0f242f2f503258c1902a9ea7317b04231360ec88 (patch) | |
tree | d5aab6a720256dfd1d8b806ec5e713b0a25bde2e /libs/iwinfo/src/iwinfo.h | |
parent | 0e88acfd4ef3abd5af048fda14810a207681c913 (diff) |
libs/iwinfo: add signal and quality values to scan results
Diffstat (limited to 'libs/iwinfo/src/iwinfo.h')
-rw-r--r-- | libs/iwinfo/src/iwinfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/iwinfo/src/iwinfo.h b/libs/iwinfo/src/iwinfo.h index c1b5b7a12..b19795cc8 100644 --- a/libs/iwinfo/src/iwinfo.h +++ b/libs/iwinfo/src/iwinfo.h @@ -47,6 +47,9 @@ struct iwinfo_scanlist_entry { uint8_t ssid[IW_ESSID_MAX_SIZE+1]; uint8_t mode[8]; uint8_t channel; + uint8_t signal; + uint8_t quality; + uint8_t quality_max; struct iwinfo_crypto_entry crypto; }; |