From: Felix Fietkau Date: Fri, 8 Apr 2005 15:46:01 +0000 (+0000) Subject: get max rts and frag in SIOCGIWRANGE X-Git-Tag: reboot~33127 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4bd4fa94196c1335bb672bfa4caadaef8ac15ccb;p=oweals%2Fopenwrt.git get max rts and frag in SIOCGIWRANGE SVN-Revision: 585 --- diff --git a/openwrt/package/openwrt/wlcompat.c b/openwrt/package/openwrt/wlcompat.c index 5245ab5942..52af95a9a1 100644 --- a/openwrt/package/openwrt/wlcompat.c +++ b/openwrt/package/openwrt/wlcompat.c @@ -71,9 +71,13 @@ static int wlcompat_ioctl_getiwrange(struct net_device *dev, range->pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_UNICAST_R; range->min_rts = 0; - range->max_rts = 2347; + if (wl_ioctl(dev, WLC_GET_RTS, &range->max_rts, sizeof(int)) < 0) + range->max_rts = 2347; + range->min_frag = 256; - range->max_frag = 2346; + + if (wl_ioctl(dev, WLC_GET_FRAG, &range->max_frag, sizeof(int)) < 0) + range->max_frag = 2346; range->min_pmp = 0; range->max_pmp = 65535000;