This patch indicate unassociated and radio off status in name field
Signed-off-by: Mohamed Abbas <[EMAIL PROTECTED]> diff --git a/net/d80211/ieee80211_ioctl.c b/net/d80211/ieee80211_ioctl.c index 89a58e3..44b2698 100644 --- a/net/d80211/ieee80211_ioctl.c +++ b/net/d80211/ieee80211_ioctl.c @@ -1538,6 +1538,19 @@ static int ieee80211_ioctl_giwname(struc char *name, char *extra) { struct ieee80211_local *local = dev->ieee80211_ptr; + struct ieee80211_sub_if_data *sdata; + + sdata = IEEE80211_DEV_TO_SUB_IF(dev); + if (!local->conf.radio_enabled) { + strcpy(name, "radio off"); + return 0; + } else if (sdata->type == IEEE80211_IF_TYPE_STA) { + if ((sdata->u.sta.state != IEEE80211_ASSOCIATED) || + (sdata->u.sta.probereq_poll)) { + strcpy(name, "unassociated"); + return 0; + } + } switch (local->conf.phymode) { case MODE_IEEE80211A: