aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorChun-Yeow Yeoh <yeohchunyeow@gmail.com>2011-11-24 20:15:20 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-11-28 14:44:02 -0500
commit4bb62344e4703414fd253ceb07c163ac37da80d4 (patch)
treedd8e23fa687ccf2cf21491ccd012fa0447fc08c5 /include/net/cfg80211.h
parent090891fb2c68eecf95c18c8ba117fc850d21abf8 (diff)
{nl,cfg,mac}80211: Allow Setting Multicast Rate in Mesh
Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com> Signed-off-by: Thomas Pedersen <thomas@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 38ce452da20f..232d1a5c5672 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -802,6 +802,7 @@ struct mesh_config {
802 * @ie_len: length of vendor information elements 802 * @ie_len: length of vendor information elements
803 * @is_authenticated: this mesh requires authentication 803 * @is_authenticated: this mesh requires authentication
804 * @is_secure: this mesh uses security 804 * @is_secure: this mesh uses security
805 * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a]
805 * 806 *
806 * These parameters are fixed when the mesh is created. 807 * These parameters are fixed when the mesh is created.
807 */ 808 */
@@ -814,6 +815,7 @@ struct mesh_setup {
814 u8 ie_len; 815 u8 ie_len;
815 bool is_authenticated; 816 bool is_authenticated;
816 bool is_secure; 817 bool is_secure;
818 int mcast_rate[IEEE80211_NUM_BANDS];
817}; 819};
818 820
819/** 821/**