Return-path: Received: from smtp.nokia.com ([192.100.105.134]:34080 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753123Ab0FOGYb (ORCPT ); Tue, 15 Jun 2010 02:24:31 -0400 From: Teemu Paasikivi To: johannes@sipsolutions.net Cc: linux-wireless@vger.kernel.org, Teemu Paasikivi Subject: [PATCH] iw: Configure basic rates when joining ibss network Date: Tue, 15 Jun 2010 09:24:13 +0300 Message-Id: <1276583053-30638-1-git-send-email-ext-teemu.3.paasikivi@nokia.com> Sender: linux-wireless-owner@vger.kernel.org List-ID: This patch adds option to configure basic rates when joining ibss network. Signed-off-by: Teemu Paasikivi --- ibss.c | 34 +++++++++++++++++++++++++++++++++- 1 files changed, 33 insertions(+), 1 deletions(-) diff --git a/ibss.c b/ibss.c index 4715ac8..cf57cf0 100644 --- a/ibss.c +++ b/ibss.c @@ -18,6 +18,11 @@ static int join_ibss(struct nl80211_state *state, { char *end; unsigned char abssid[6]; + unsigned char rates[NL80211_MAX_SUPP_RATES]; + int n_rates = 0; + char *value = NULL, *sptr = NULL; + float rate; + if (argc < 2) return 1; @@ -41,6 +46,31 @@ static int join_ibss(struct nl80211_state *state, argc--; } + /* basic rates */ + if (argc > 1 && strcmp(argv[0], "basic-rates") == 0) { + argv++; + argc--; + + value = strtok_r(argv[0], ",", &sptr); + + while (value && n_rates < NL80211_MAX_SUPP_RATES) { + rate = atof(value); + rates[n_rates] = rate * 2; + + /* filter out suspicious values */ + if (!rates[n_rates] || rate*2 != rates[n_rates]) + return 1; + + n_rates++; + value = strtok_r(NULL, ",", &sptr); + } + + NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, n_rates, rates); + + argv++; + argc--; + } + if (argc) { if (mac_addr_a2n(abssid, argv[0]) == 0) { NLA_PUT(msg, NL80211_ATTR_MAC, 6, abssid); @@ -73,7 +103,9 @@ static int leave_ibss(struct nl80211_state *state, COMMAND(ibss, leave, NULL, NL80211_CMD_LEAVE_IBSS, 0, CIB_NETDEV, leave_ibss, "Leave the current IBSS cell."); -COMMAND(ibss, join, " [fixed-freq] [] [key d:0:abcde]", +COMMAND(ibss, join, + " [fixed-freq] [] " + "[basic-rates ] [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" -- 1.5.6.3