set rate in wificonf from wl0_rate (fixes #159)
[openwrt.git] / package / wificonf / wificonf.c
index 1ac0ca8..5c3581d 100644 (file)
@@ -622,6 +622,10 @@ static void setup_bcom_common(int skfd, char *ifname)
        val = nvram_enabled(wl_var("lazywds"));
        bcom_ioctl(skfd, ifname, WLC_SET_LAZYWDS, &val, sizeof(val));
 
+       if ((val = atoi(nvram_safe_get(wl_var("rate")))) > 0) {
+               val *= 2;
+               bcom_ioctl(skfd, ifname, WLC_SET_RATE, &val, sizeof(val));
+       }
        if (v = nvram_get(wl_var("dtim"))) {
                val = atoi(v);
                bcom_ioctl(skfd, ifname, WLC_SET_DTIMPRD, &val, sizeof(val));
This page took 0.024977 seconds and 4 git commands to generate.