diff options
author | Markus Theil <markus.theil@tu-ilmenau.de> | 2020-06-11 16:02:37 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-07-31 09:24:24 +0200 |
commit | 184eebe664f0e11c485f6d309fe56297b3f75e9e (patch) | |
tree | 8246294d4347b5c8241e9a8d6d2073d85b4043e1 /include/net | |
parent | e3718a611470d311a92c60d4eb535270b49a7108 (diff) | |
download | linux-184eebe664f0e11c485f6d309fe56297b3f75e9e.tar.gz linux-184eebe664f0e11c485f6d309fe56297b3f75e9e.tar.bz2 linux-184eebe664f0e11c485f6d309fe56297b3f75e9e.zip |
cfg80211/mac80211: add connected to auth server to meshconf
Besides information about num of peerings and gate connectivity,
the mesh formation byte also contains a flag for authentication
server connectivity, that currently cannot be set in the mesh conf.
This patch adds this capability, which is necessary to implement
802.1X authentication in mesh mode.
Signed-off-by: Markus Theil <markus.theil@tu-ilmenau.de>
Link: https://lore.kernel.org/r/20200611140238.427461-1-markus.theil@tu-ilmenau.de
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/cfg80211.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 78b220950942..8d5071f84ffe 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -1895,6 +1895,7 @@ struct mesh_config { u16 dot11MeshHWMPnetDiameterTraversalTime; u8 dot11MeshHWMPRootMode; bool dot11MeshConnectedToMeshGate; + bool dot11MeshConnectedToAuthServer; u16 dot11MeshHWMPRannInterval; bool dot11MeshGateAnnouncementProtocol; bool dot11MeshForwarding; |