cfg80211.h (1d70218e9e1a27915a5d6ac434c226c8861f64f2) cfg80211.h (05e640dc9e13015735d25366fc0e088939f1e099)
1/*-
2 * Copyright (c) 2020-2021 The FreeBSD Foundation
3 * Copyright (c) 2021-2022 Bjoern A. Zeeb
4 *
5 * This software was developed by Björn Zeeb under sponsorship from
6 * the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 159 unchanged lines hidden (view full) ---

168 /* TODO FIXME */
169 uint32_t bitrate;
170 uint32_t hw_value;
171 uint32_t hw_value_short;
172 uint32_t flags;
173};
174
175struct ieee80211_sta_ht_cap {
1/*-
2 * Copyright (c) 2020-2021 The FreeBSD Foundation
3 * Copyright (c) 2021-2022 Bjoern A. Zeeb
4 *
5 * This software was developed by Björn Zeeb under sponsorship from
6 * the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 159 unchanged lines hidden (view full) ---

168 /* TODO FIXME */
169 uint32_t bitrate;
170 uint32_t hw_value;
171 uint32_t hw_value_short;
172 uint32_t flags;
173};
174
175struct ieee80211_sta_ht_cap {
176 /* TODO FIXME */
177 int ampdu_density, ampdu_factor;
178 bool ht_supported;
176 bool ht_supported;
177 uint8_t ampdu_density;
178 uint8_t ampdu_factor;
179 uint16_t cap;
180 struct ieee80211_mcs_info mcs;
181};
182
183/* XXX net80211 calls these IEEE80211_VHTCAP_* */
184#define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895 0x00000000 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_3895 */
185#define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991 0x00000001 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_7991 */
186#define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 0x00000002 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_11454 */

--- 1560 unchanged lines hidden ---
179 uint16_t cap;
180 struct ieee80211_mcs_info mcs;
181};
182
183/* XXX net80211 calls these IEEE80211_VHTCAP_* */
184#define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895 0x00000000 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_3895 */
185#define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991 0x00000001 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_7991 */
186#define IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 0x00000002 /* IEEE80211_VHTCAP_MAX_MPDU_LENGTH_11454 */

--- 1560 unchanged lines hidden ---