summaryrefslogtreecommitdiffstats
path: root/package/wificonf
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-06-27 09:08:02 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-06-27 09:08:02 +0000
commit5db007757effee819bb580feeb2e49150acb0495 (patch)
treed1b53c32bddf9b55713f0001f3cec3bbaf365209 /package/wificonf
parent0ae0d97ce532b80e00e16c63dda58c0edba4cd33 (diff)
fix wds in wificonf
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1288 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wificonf')
-rw-r--r--package/wificonf/wificonf.c21
1 files changed, 18 insertions, 3 deletions
diff --git a/package/wificonf/wificonf.c b/package/wificonf/wificonf.c
index 21a96c46f..8df932f1e 100644
--- a/package/wificonf/wificonf.c
+++ b/package/wificonf/wificonf.c
@@ -146,6 +146,8 @@ int bcom_set_int(int skfd, char *ifname, char *var, int val)
void setup_bcom(int skfd, char *ifname)
{
int val = 0;
+ char buf[8192];
+ char wbuf[80];
char *v;
if (bcom_ioctl(skfd, ifname, WLC_GET_MAGIC, &val, sizeof(val)) < 0)
@@ -225,8 +227,6 @@ void setup_bcom(int skfd, char *ifname)
val = WLC_MACMODE_DISABLED;
if ((val != WLC_MACMODE_DISABLED) && (v = nvram_get(wl_var("maclist")))) {
- char buf[8192];
- char wbuf[80];
struct maclist *mac_list;
struct ether_addr *addr;
char *next;
@@ -235,7 +235,7 @@ void setup_bcom(int skfd, char *ifname)
mac_list = (struct maclist *) buf;
addr = mac_list->ea;
- foreach(wbuf, nvram_safe_get(wl_var("maclist")), next) {
+ foreach(wbuf, v, next) {
if (ether_atoe(wbuf, addr->ether_addr_octet)) {
mac_list->count++;
addr++;
@@ -246,6 +246,21 @@ void setup_bcom(int skfd, char *ifname)
val = WLC_MACMODE_DISABLED;
}
bcom_ioctl(skfd, ifname, WLC_SET_MACMODE, &val, sizeof(val));
+
+ if (v = nvram_get(wl_var("wds"))) {
+ struct maclist *wdslist = (struct maclist *) buf;
+ struct ether_addr *addr = wdslist->ea;
+ char *next;
+
+ memset(buf, 0, 8192);
+ foreach(wbuf, v, next) {
+ if (ether_atoe(wbuf, addr->ether_addr_octet)) {
+ wdslist->count++;
+ addr++;
+ }
+ }
+ bcom_ioctl(skfd, ifname, WLC_SET_WDSLIST, buf, sizeof(buf));
+ }
/* Set up G mode */
bcom_ioctl(skfd, ifname, WLC_GET_PHYTYPE, &val, sizeof(val));