summaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorFelix Fietkau2010-11-11 15:07:22 +0100
committerJohn W. Linville2010-11-16 22:39:08 +0100
commit885a46d0f7942d76c2f3860acb45f75237d3bb42 (patch)
treef116fcc9b8204f7a113693e307de76e4098ebb36 /include/net/cfg80211.h
parentmac80211: Add function to get probe request template for current AP (diff)
downloadkernel-qcow2-linux-885a46d0f7942d76c2f3860acb45f75237d3bb42.tar.gz
kernel-qcow2-linux-885a46d0f7942d76c2f3860acb45f75237d3bb42.tar.xz
kernel-qcow2-linux-885a46d0f7942d76c2f3860acb45f75237d3bb42.zip
cfg80211: add support for setting the ad-hoc multicast rate
Signed-off-by: Felix Fietkau <nbd@openwrt.org> 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 07425e648a09..8fd9eebd0cc9 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -923,6 +923,7 @@ struct cfg80211_disassoc_request {
* @privacy: this is a protected network, keys will be configured
* after joining
* @basic_rates: bitmap of basic rates to use when creating the IBSS
+ * @mcast_rate: multicast tx rate (in 100 kbps)
*/
struct cfg80211_ibss_params {
u8 *ssid;
@@ -934,6 +935,7 @@ struct cfg80211_ibss_params {
u32 basic_rates;
bool channel_fixed;
bool privacy;
+ int mcast_rate;
};
/**