diff options
author | sam <sam@FreeBSD.org> | 2007-11-02 05:19:14 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2007-11-02 05:19:14 +0000 |
commit | 141114012a310427586190ec6c1ff78e7b0e6654 (patch) | |
tree | dbcc9892521db52230f8d18f0dac7f99bdf83caa /sys/net80211/ieee80211_ioctl.h | |
parent | bea2dd5a061bf4e23b170c12c52f0e02f56c2aa6 (diff) | |
download | FreeBSD-src-141114012a310427586190ec6c1ff78e7b0e6654.zip FreeBSD-src-141114012a310427586190ec6c1ff78e7b0e6654.tar.gz |
correct channel flags returned by IEEE80211_IOC_STA_INFO; we need
to return all 32-bits to identify stations operating with HT
MFC after: 1 week
Diffstat (limited to 'sys/net80211/ieee80211_ioctl.h')
-rw-r--r-- | sys/net80211/ieee80211_ioctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_ioctl.h b/sys/net80211/ieee80211_ioctl.h index 95ae8eb..6fe168e 100644 --- a/sys/net80211/ieee80211_ioctl.h +++ b/sys/net80211/ieee80211_ioctl.h @@ -321,7 +321,7 @@ struct ieee80211req_sta_info { uint16_t isi_ie_off; /* offset to IE data */ uint16_t isi_ie_len; /* IE length */ uint16_t isi_freq; /* MHz */ - uint16_t isi_flags; /* channel flags */ + uint32_t isi_flags; /* channel flags */ uint16_t isi_state; /* state flags */ uint8_t isi_authmode; /* authentication algorithm */ int8_t isi_rssi; /* receive signal strength */ |