From 4bd4fa94196c1335bb672bfa4caadaef8ac15ccb Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 8 Apr 2005 15:46:01 +0000 Subject: [PATCH] get max rts and frag in SIOCGIWRANGE SVN-Revision: 585 --- openwrt/package/openwrt/wlcompat.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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; -- 2.25.1