diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-04-14 09:37:03 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-04-16 15:59:57 -0400 |
commit | b454048cb933eb69dd9d46c16bf01e9df997fa3d (patch) | |
tree | 9abb219a4acbc06ff508b36268f42c523d69adc4 /net | |
parent | 3e2c40ef09f397b0123fc0233d5d0531c217dc39 (diff) |
mac80211: allow WDS mode
This allows creating interfaces in WDS mode or switching
existing ones into WDS mode (both via cfg80211 and wext.)
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/cfg.c | 2 | ||||
-rw-r--r-- | net/mac80211/wext.c | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 0c1095aa94dd..699d97b8de5e 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -33,6 +33,8 @@ nl80211_type_to_mac80211_type(enum nl80211_iftype type) | |||
33 | case NL80211_IFTYPE_MESH_POINT: | 33 | case NL80211_IFTYPE_MESH_POINT: |
34 | return IEEE80211_IF_TYPE_MESH_POINT; | 34 | return IEEE80211_IF_TYPE_MESH_POINT; |
35 | #endif | 35 | #endif |
36 | case NL80211_IFTYPE_WDS: | ||
37 | return IEEE80211_IF_TYPE_WDS; | ||
36 | default: | 38 | default: |
37 | return IEEE80211_IF_TYPE_INVALID; | 39 | return IEEE80211_IF_TYPE_INVALID; |
38 | } | 40 | } |
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c index 5a452575719d..76e1de1dc735 100644 --- a/net/mac80211/wext.c +++ b/net/mac80211/wext.c | |||
@@ -236,6 +236,9 @@ static int ieee80211_ioctl_siwmode(struct net_device *dev, | |||
236 | case IW_MODE_ADHOC: | 236 | case IW_MODE_ADHOC: |
237 | type = IEEE80211_IF_TYPE_IBSS; | 237 | type = IEEE80211_IF_TYPE_IBSS; |
238 | break; | 238 | break; |
239 | case IW_MODE_REPEAT: | ||
240 | type = IEEE80211_IF_TYPE_WDS; | ||
241 | break; | ||
239 | case IW_MODE_MONITOR: | 242 | case IW_MODE_MONITOR: |
240 | type = IEEE80211_IF_TYPE_MNTR; | 243 | type = IEEE80211_IF_TYPE_MNTR; |
241 | break; | 244 | break; |