projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
compile linux-atm only on ar7
[openwrt.git]
/
openwrt
/
package
/
wificonf
/
wificonf.c
diff --git
a/openwrt/package/wificonf/wificonf.c
b/openwrt/package/wificonf/wificonf.c
index
60ffd90
..
1ac0ca8
100644
(file)
--- a/
openwrt/package/wificonf/wificonf.c
+++ b/
openwrt/package/wificonf/wificonf.c
@@
-396,6
+396,7
@@
void start_watchdog(int skfd, char *ifname)
char *v, *next;
unsigned char buf[8192], buf2[8192], wbuf[80], *p, *tmp;
int wds = 0, i, j, restart_wds;
char *v, *next;
unsigned char buf[8192], buf2[8192], wbuf[80], *p, *tmp;
int wds = 0, i, j, restart_wds;
+ wlc_ssid_t ssid;
if (fork())
return;
if (fork())
return;
@@
-550,7
+551,7
@@
static void setup_bcom_vif_sec(int skfd, char *ifname, int vif)
wep = 1;
bcom_set_bss_int(skfd, ifname, vif, "wsec", WEP_ENABLED);
bcom_set_bss_int(skfd, ifname, vif, "wsec_restrict", 1);
wep = 1;
bcom_set_bss_int(skfd, ifname, vif, "wsec", WEP_ENABLED);
bcom_set_bss_int(skfd, ifname, vif, "wsec_restrict", 1);
- bcom_set_bss_int(skfd, ifname, vif, "auth",
1
);
+ bcom_set_bss_int(skfd, ifname, vif, "auth",
nvram_enabled(vif_var(vif, "auth"))
);
} else {
wep = 0;
}
} else {
wep = 0;
}
@@
-867,8
+868,14
@@
static void setup_bcom_old(int skfd, char *ifname)
bcom_ioctl(skfd, ifname, WLC_SET_EAP_RESTRICT, &val, sizeof(val));
bcom_set_int(skfd, ifname, "sup_wpa", 0);
}
bcom_ioctl(skfd, ifname, WLC_SET_EAP_RESTRICT, &val, sizeof(val));
bcom_set_int(skfd, ifname, "sup_wpa", 0);
}
+
+ if (v = nvram_get(wl_var("auth"))) {
+ val = atoi(v);
+ bcom_ioctl(skfd, ifname, WLC_SET_AUTH, &val, sizeof(val));
+ }
}
}
+
static void set_wext_ssid(int skfd, char *ifname)
{
char *buffer;
static void set_wext_ssid(int skfd, char *ifname)
{
char *buffer;
This page took
0.023756 seconds
and
4
git commands to generate.