add ntpclient hotplug script from whiterussian
[openwrt.git] / openwrt / package / wificonf / wificonf.c
index 4096617..5c3581d 100644 (file)
@@ -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;
+       wlc_ssid_t ssid;
 
        if (fork())
                return;
@@ -621,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.02667 seconds and 4 git commands to generate.