Added "unhandled" messages for the info frames we're doing nothing with.

This commit is contained in:
mark 2000-07-02 15:20:04 +00:00
parent 75831a459d
commit d4484f3de0
1 changed files with 7 additions and 2 deletions

View File

@ -1133,6 +1133,7 @@ done:
void prism2sta_inf_handover(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
{
DBFENTER;
WLAN_LOG_DEBUG0(2,"received infoframe:HANDOVER (unhandled)\n");
DBFEXIT;
return;
}
@ -1158,6 +1159,7 @@ void prism2sta_inf_handover(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
void prism2sta_inf_tallies(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
{
DBFENTER;
WLAN_LOG_DEBUG0(2,"received infoframe:COMMTALLIES (unhandled)\n");
DBFEXIT;
return;
}
@ -1233,7 +1235,7 @@ void prism2sta_inf_scanresults(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
void prism2sta_inf_chinforesults(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
{
DBFENTER;
WLAN_LOG_DEBUG0(1,"scanresults frame received.\n");
WLAN_LOG_DEBUG0(2,"received infoframe:CHINFO (unhandled)\n");
DBFEXIT;
return;
}
@ -1346,6 +1348,7 @@ failed:
void prism2sta_inf_assocstatus(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
{
DBFENTER;
WLAN_LOG_DEBUG0(2,"received infoframe:ASSOCSTATUS (unhandled)\n");
DBFEXIT;
return;
}
@ -1372,6 +1375,7 @@ void prism2sta_inf_assocstatus(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
void prism2sta_inf_authreq( wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
{
DBFENTER;
WLAN_LOG_DEBUG0(2,"received infoframe:AUTHREQ (unhandled)\n");
DBFEXIT;
return;
}
@ -1398,6 +1402,7 @@ void prism2sta_inf_authreq( wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
void prism2sta_inf_psusercnt( wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
{
DBFENTER;
WLAN_LOG_DEBUG0(2,"received infoframe:PSUSERCNT (unhandled)\n");
DBFEXIT;
return;
}
@ -1654,7 +1659,7 @@ void prism2sta_int_info(wlandevice_t *wlandev)
break;
default:
WLAN_LOG_WARNING1(
"Unknown info type=0x%02x", inf.infotype);
"Unknown info type=0x%02x\n", inf.infotype);
break;
}