aboutsummaryrefslogtreecommitdiffstats
path: root/package/iw/patches/120-ibss_mcast_rate.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-02-10 03:37:28 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-02-10 03:37:28 +0000
commit1ede637d89b6b2477b9f7717a76dd549e4fd085f (patch)
tree47f5a0b97e49a8b2230f59339b7117bb1e23c282 /package/iw/patches/120-ibss_mcast_rate.patch
parentebb2cdbea857ac013f8f942af1a26ea9594ad36c (diff)
downloadupstream-1ede637d89b6b2477b9f7717a76dd549e4fd085f.tar.gz
upstream-1ede637d89b6b2477b9f7717a76dd549e4fd085f.tar.bz2
upstream-1ede637d89b6b2477b9f7717a76dd549e4fd085f.zip
iw: update to 0.9.22
SVN-Revision: 25440
Diffstat (limited to 'package/iw/patches/120-ibss_mcast_rate.patch')
-rw-r--r--package/iw/patches/120-ibss_mcast_rate.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/iw/patches/120-ibss_mcast_rate.patch b/package/iw/patches/120-ibss_mcast_rate.patch
deleted file mode 100644
index acbd3e89a8..0000000000
--- a/package/iw/patches/120-ibss_mcast_rate.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/ibss.c
-+++ b/ibss.c
-@@ -83,6 +83,20 @@ static int join_ibss(struct nl80211_stat
- argc--;
- }
-
-+ /* multicast rate */
-+ if (argc > 1 && strcmp(argv[0], "mcast-rate") == 0) {
-+ argv++;
-+ argc--;
-+
-+ rate = strtod(argv[0], &end);
-+ if (*end != '\0')
-+ return 1;
-+
-+ NLA_PUT_U32(msg, NL80211_ATTR_MCAST_RATE, (int) rate * 10);
-+ argv++;
-+ argc--;
-+ }
-+
- if (!argc)
- return 0;
-
-@@ -109,7 +123,7 @@ COMMAND(ibss, leave, NULL,
- "Leave the current IBSS cell.");
- COMMAND(ibss, join,
- "<SSID> <freq in MHz> [fixed-freq] [<fixed bssid>] "
-- "[basic-rates <rate in Mbps,rate2,...>] [key d:0:abcde]",
-+ "[basic-rates <rate in Mbps,rate2,...>] [mcast-rate <rate in Mbps>] [key d:0:abcde]",
- NL80211_CMD_JOIN_IBSS, 0, CIB_NETDEV, join_ibss,
- "Join the IBSS cell with the given SSID, if it doesn't exist create\n"
- "it on the given frequency. When fixed frequency is requested, don't\n"