diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2016-01-25 11:27:12 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2016-01-25 11:27:12 +0000 |
commit | 5193161ab9f8afc2b7f9da29cfc41d21316a1761 (patch) | |
tree | 67b3c193318ab1c8cfae6b3188e5128c684b6691 /sys/net80211/ieee80211_var.h | |
parent | 6d41e9012d18a436547107e4acb1051f29239ced (diff) |
Keep track of HT protection settings in beacons and have 11n-capable
drivers update hardware configuration accordingly.
tested by myself, tb@, deraadt@, abieber@
ok mpi@
Diffstat (limited to 'sys/net80211/ieee80211_var.h')
-rw-r--r-- | sys/net80211/ieee80211_var.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_var.h b/sys/net80211/ieee80211_var.h index ea672da5658..ab20a704046 100644 --- a/sys/net80211/ieee80211_var.h +++ b/sys/net80211/ieee80211_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_var.h,v 1.70 2016/01/12 09:28:09 stsp Exp $ */ +/* $OpenBSD: ieee80211_var.h,v 1.71 2016/01/25 11:27:11 stsp Exp $ */ /* $NetBSD: ieee80211_var.h,v 1.7 2004/05/06 03:07:10 dyoung Exp $ */ /*- @@ -213,6 +213,8 @@ struct ieee80211com { struct ieee80211_node *, u_int8_t); void (*ic_ampdu_rx_stop)(struct ieee80211com *, struct ieee80211_node *, u_int8_t); + void (*ic_update_htprot)(struct ieee80211com *, + struct ieee80211_node *); u_int8_t ic_myaddr[IEEE80211_ADDR_LEN]; struct ieee80211_rateset ic_sup_rates[IEEE80211_MODE_MAX]; struct ieee80211_channel ic_channels[IEEE80211_CHAN_MAX+1]; |