projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove -Werror in order not to treat warnings as errors (fix gcc-4 errors), closes...
[openwrt.git]
/
openwrt
/
package
/
wificonf
/
wificonf.c
diff --git
a/openwrt/package/wificonf/wificonf.c
b/openwrt/package/wificonf/wificonf.c
index
4096617
..
068090c
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;
@@
-779,6
+780,11
@@
static void setup_bcom_new(int skfd, char *ifname)
}
}
+ if ((val = atoi(nvram_safe_get(wl_var("rate")))) > 0) {
+ val /= 500000;
+ bcom_set_int(skfd, ifname, "bg_rate", val);
+ bcom_set_int(skfd, ifname, "a_rate", val);
+ }
if (v = nvram_get(wl_var("rts"))) {
val = atoi(v);
bcom_set_int(skfd, ifname, "rtsthresh", val);
if (v = nvram_get(wl_var("rts"))) {
val = atoi(v);
bcom_set_int(skfd, ifname, "rtsthresh", val);
@@
-822,6
+828,10
@@
static void setup_bcom_old(int skfd, char *ifname)
setup_bcom_common(skfd, ifname);
setup_bcom_common(skfd, ifname);
+ if ((val = atoi(nvram_safe_get(wl_var("rate")))) > 0) {
+ val *= 2;
+ bcom_ioctl(skfd, ifname, 13, &val, sizeof(val));
+ }
if (v = nvram_get(wl_var("frag"))) {
val = atoi(v);
bcom_ioctl(skfd, ifname, WLC_SET_FRAG, &val, sizeof(val));
if (v = nvram_get(wl_var("frag"))) {
val = atoi(v);
bcom_ioctl(skfd, ifname, WLC_SET_FRAG, &val, sizeof(val));
This page took
0.022737 seconds
and
4
git commands to generate.