diff options
author | Rui Paulo <rpaulo@gmail.com> | 2009-11-09 18:46:54 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-13 17:43:56 -0500 |
commit | be125c60e46e165fbfe33db36a4a9d943d560a5b (patch) | |
tree | 96a40fd3b64c23a2f9057c717c0a84b8f7099377 /net/mac80211/mesh.c | |
parent | 36f0d5f537885179c8fa92a70d4fcfb3a336b082 (diff) |
mac80211: add the DS params to the beacon
Signed-off-by: Rui Paulo <rpaulo@gmail.com>
Signed-off-by: Javier Cardona <javier@cozybit.com>
Reviewed-by: Andrey Yurovsky <andrey@cozybit.com>
Tested-by: Brian Cavagnolo <brian@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mesh.c')
-rw-r--r-- | net/mac80211/mesh.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/mac80211/mesh.c b/net/mac80211/mesh.c index 63427d983216..222a31338390 100644 --- a/net/mac80211/mesh.c +++ b/net/mac80211/mesh.c | |||
@@ -247,6 +247,13 @@ void mesh_mgmt_ies_add(struct sk_buff *skb, struct ieee80211_sub_if_data *sdata) | |||
247 | } | 247 | } |
248 | } | 248 | } |
249 | 249 | ||
250 | if (sband->band == IEEE80211_BAND_2GHZ) { | ||
251 | pos = skb_put(skb, 2 + 1); | ||
252 | *pos++ = WLAN_EID_DS_PARAMS; | ||
253 | *pos++ = 1; | ||
254 | *pos++ = ieee80211_frequency_to_channel(local->hw.conf.channel->center_freq); | ||
255 | } | ||
256 | |||
250 | pos = skb_put(skb, 2 + sdata->u.mesh.mesh_id_len); | 257 | pos = skb_put(skb, 2 + sdata->u.mesh.mesh_id_len); |
251 | *pos++ = WLAN_EID_MESH_ID; | 258 | *pos++ = WLAN_EID_MESH_ID; |
252 | *pos++ = sdata->u.mesh.mesh_id_len; | 259 | *pos++ = sdata->u.mesh.mesh_id_len; |