mirror of
https://github.com/opnsense/src.git
synced 2026-06-12 18:20:49 -04:00
net80211: add a driver-private pointer to struct ieee80211_node
Add a void *ni_drv_data field to struct ieee80211_node that drivers
can use to backtrack to their internal state from a net80211 node.
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 917181dddf)
This commit is contained in:
parent
9d2d8a27d0
commit
67efa8b299
1 changed files with 2 additions and 0 deletions
|
|
@ -260,6 +260,8 @@ struct ieee80211_node {
|
|||
/* U-APSD */
|
||||
uint8_t ni_uapsd; /* U-APSD per-node flags matching WMM STA QoS Info field */
|
||||
|
||||
void *ni_drv_data; /* driver specific */
|
||||
|
||||
uint64_t ni_spare[3];
|
||||
};
|
||||
MALLOC_DECLARE(M_80211_NODE);
|
||||
|
|
|
|||
Loading…
Reference in a new issue