Staging: rt2860: remove NATIVE_WPA_SUPPLICANT_SUPPORT ifdefs
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
84717059b3
commit
2684d16649
@ -5,7 +5,6 @@ EXTRA_CFLAGS += -DLINUX -DAGGREGATION_SUPPORT -DPIGGYBACK_SUPPORT -DWMM_SUPPORT
|
||||
EXTRA_CFLAGS += -DDBG
|
||||
EXTRA_CFLAGS += -DDOT11_N_SUPPORT
|
||||
EXTRA_CFLAGS += -DWPA_SUPPLICANT_SUPPORT
|
||||
EXTRA_CFLAGS += -DNATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
rt2860sta-objs := \
|
||||
common/md5.o \
|
||||
|
@ -1110,26 +1110,11 @@ VOID STAMlmePeriodicExec(
|
||||
// Lost AP, send disconnect & link down event
|
||||
LinkDown(pAd, FALSE);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
MlmeAutoReconnectLastSSID(pAd);
|
||||
}
|
||||
|
@ -3071,9 +3071,7 @@ VOID UserCfgInit(
|
||||
pAd->StaCfg.IEEE8021X = FALSE;
|
||||
pAd->StaCfg.IEEE8021x_required_keys = FALSE;
|
||||
pAd->StaCfg.WpaSupplicantUP = WPA_SUPPLICANT_DISABLE;
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
pAd->StaCfg.WpaSupplicantUP = WPA_SUPPLICANT_ENABLE;
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
@ -873,19 +873,6 @@ typedef struct _RT_LLTD_ASSOICATION_TABLE {
|
||||
} RT_LLTD_ASSOICATION_TABLE, *PRT_LLTD_ASSOICATION_TABLE;
|
||||
#endif // LLTD_SUPPORT //
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
#define RT_ASSOC_EVENT_FLAG 0x0101
|
||||
#define RT_DISASSOC_EVENT_FLAG 0x0102
|
||||
#define RT_REQIE_EVENT_FLAG 0x0103
|
||||
#define RT_RESPIE_EVENT_FLAG 0x0104
|
||||
#define RT_ASSOCINFO_EVENT_FLAG 0x0105
|
||||
#define RT_PMKIDCAND_FLAG 0x0106
|
||||
#define RT_INTERFACE_DOWN 0x0107
|
||||
#define RT_INTERFACE_UP 0x0108
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#define MAX_CUSTOM_LEN 128
|
||||
|
||||
typedef enum _RT_802_11_D_CLIENT_MODE
|
||||
|
@ -64,11 +64,9 @@
|
||||
#include "igmp_snoop.h"
|
||||
#endif // IGMP_SNOOP_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef WPA_SUPPLICANT_SUPPORT
|
||||
#error "Build for being controlled by NetworkManager or wext, please set HAS_WPA_SUPPLICANT=y and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y"
|
||||
#error "Build for being controlled by NetworkManager or wext, please set HAS_WPA_SUPPLICANT=y"
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef IKANOS_VX_1X0
|
||||
#include "vr_ikans.h"
|
||||
|
@ -241,18 +241,6 @@ int rt28xx_close(IN PNET_DEV dev)
|
||||
RTMPCancelTimer(&pAd->StaCfg.StaQuickResponeForRateUpTimer, &Cancelled);
|
||||
RTMPCancelTimer(&pAd->StaCfg.WpaDisassocAndBlockAssocTimer, &Cancelled);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
// send wireless event to wpa_supplicant for infroming interface down.
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_INTERFACE_DOWN;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
MlmeRadioOff(pAd);
|
||||
pAd->bPCIclkOff = FALSE;
|
||||
}
|
||||
@ -592,18 +580,6 @@ int rt28xx_open(IN PNET_DEV dev)
|
||||
|
||||
IF_DEV_CONFIG_OPMODE_ON_STA(pAd)
|
||||
{
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
// send wireless event to wpa_supplicant for infroming interface down.
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_INTERFACE_UP;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
||||
// Enable Interrupt
|
||||
@ -734,13 +710,12 @@ INT __devinit rt28xx_probe(
|
||||
}
|
||||
|
||||
netif_stop_queue(net_dev);
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
/* for supporting Network Manager */
|
||||
/* Set the sysfs physical device reference for the network logical device
|
||||
* if set prior to registration will cause a symlink during initialization.
|
||||
*/
|
||||
SET_NETDEV_DEV(net_dev, &(dev_p->dev));
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
// Allocate RTMP_ADAPTER miniport adapter structure
|
||||
handle = kmalloc(sizeof(struct os_cookie), GFP_KERNEL);
|
||||
|
@ -5757,10 +5757,8 @@ VOID SendAssocIEsToWpaSupplicant(
|
||||
IN PRTMP_ADAPTER pAd);
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
int wext_notify_event_assoc(
|
||||
IN RTMP_ADAPTER *pAd);
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef DOT11_N_SUPPORT
|
||||
VOID Handle_BSS_Width_Trigger_Events(
|
||||
|
@ -840,27 +840,11 @@ VOID MlmeDisassocReqAction(
|
||||
RTMPSetTimer(&pAd->MlmeAux.DisassocTimer, Timeout); /* in mSec */
|
||||
pAd->Mlme.AssocMachine.CurrState = DISASSOC_WAIT_RSP;
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
@ -908,21 +892,6 @@ VOID PeerAssocRspAction(
|
||||
AssocPostProc(pAd, Addr2, CapabilityInfo, Aid, SupRate, SupRateLen, ExtRate, ExtRateLen,
|
||||
&EdcaParm, &HtCapability, HtCapabilityLen, &AddHtInfo);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
SendAssocIEsToWpaSupplicant(pAd);
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_ASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
wext_notify_event_assoc(pAd);
|
||||
@ -932,8 +901,6 @@ VOID PeerAssocRspAction(
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
|
||||
pAd->StaCfg.CkipFlag = CkipFlag;
|
||||
if (CkipFlag & 0x18)
|
||||
@ -1005,21 +972,6 @@ VOID PeerReassocRspAction(
|
||||
AssocPostProc(pAd, Addr2, CapabilityInfo, Aid, SupRate, SupRateLen, ExtRate, ExtRateLen,
|
||||
&EdcaParm, &HtCapability, HtCapabilityLen, &AddHtInfo);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
SendAssocIEsToWpaSupplicant(pAd);
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_ASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
wext_notify_event_assoc(pAd);
|
||||
@ -1029,7 +981,6 @@ VOID PeerReassocRspAction(
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
}
|
||||
|
||||
@ -1224,26 +1175,11 @@ VOID PeerDisassocAction(
|
||||
LinkDown(pAd, TRUE);
|
||||
pAd->Mlme.AssocMachine.CurrState = ASSOC_IDLE;
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -1526,36 +1462,6 @@ VOID SwitchBetweenWepAndCkip(
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
VOID SendAssocIEsToWpaSupplicant(
|
||||
IN PRTMP_ADAPTER pAd)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
unsigned char custom[IW_CUSTOM_MAX] = {0};
|
||||
|
||||
if ((pAd->StaCfg.ReqVarIELen + 17) <= IW_CUSTOM_MAX)
|
||||
{
|
||||
sprintf(custom, "ASSOCINFO_ReqIEs=");
|
||||
NdisMoveMemory(custom+17, pAd->StaCfg.ReqVarIEs, pAd->StaCfg.ReqVarIELen);
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.length = pAd->StaCfg.ReqVarIELen + 17;
|
||||
wrqu.data.flags = RT_REQIE_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, custom);
|
||||
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_ASSOCINFO_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
else
|
||||
DBGPRINT(RT_DEBUG_TRACE, ("pAd->StaCfg.ReqVarIELen + 17 > MAX_CUSTOM_LEN\n"));
|
||||
|
||||
return;
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
int wext_notify_event_assoc(
|
||||
IN RTMP_ADAPTER *pAd)
|
||||
{
|
||||
@ -1588,5 +1494,3 @@ int wext_notify_event_assoc(
|
||||
return 0;
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
|
@ -127,15 +127,11 @@ VOID PeerDeauthAction(
|
||||
{
|
||||
DBGPRINT(RT_DEBUG_TRACE,("AUTH_RSP - receive DE-AUTH from our AP (Reason=%d)\n", Reason));
|
||||
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
|
||||
// send wireless event - for deauthentication
|
||||
if (pAd->CommonCfg.bWirelessEvent)
|
||||
|
@ -390,7 +390,7 @@ VOID CntlOidSsidProc(
|
||||
}
|
||||
|
||||
pAd->Mlme.CntlMachine.CurrState = CNTL_IDLE;
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
@ -399,7 +399,6 @@ VOID CntlOidSsidProc(
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
}
|
||||
else if (INFRA_ON(pAd))
|
||||
@ -522,7 +521,7 @@ VOID CntlOidRTBssidProc(
|
||||
// already connected to the same BSSID, go back to idle state directly
|
||||
DBGPRINT(RT_DEBUG_TRACE, ("CNTL - already in this BSSID. ignore this SET_BSSID request\n"));
|
||||
pAd->Mlme.CntlMachine.CurrState = CNTL_IDLE;
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
@ -531,7 +530,6 @@ VOID CntlOidRTBssidProc(
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1994,25 +1992,11 @@ VOID LinkDown(
|
||||
// Allow go to sleep after linkdown steps.
|
||||
RTMP_SET_PSFLAG(pAd, fRTMP_PS_CAN_GO_SLEEP);
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP) {
|
||||
union iwreq_data wrqu;
|
||||
//send disassociate event to wpa_supplicant
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_DISASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
memset(wrqu.ap_addr.sa_data, 0, MAC_ADDR_LEN);
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1365,21 +1365,6 @@ VOID PeerBeacon(
|
||||
}
|
||||
#endif // DOT11_N_SUPPORT //
|
||||
|
||||
#ifdef WPA_SUPPLICANT_SUPPORT
|
||||
#ifndef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
if (pAd->StaCfg.WpaSupplicantUP)
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
|
||||
SendAssocIEsToWpaSupplicant(pAd);
|
||||
memset(&wrqu, 0, sizeof(wrqu));
|
||||
wrqu.data.flags = RT_ASSOC_EVENT_FLAG;
|
||||
wireless_send_event(pAd->net_dev, IWEVCUSTOM, &wrqu, NULL);
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
#endif // WPA_SUPPLICANT_SUPPORT //
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
{
|
||||
union iwreq_data wrqu;
|
||||
wext_notify_event_assoc(pAd);
|
||||
@ -1389,7 +1374,6 @@ VOID PeerBeacon(
|
||||
wireless_send_event(pAd->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
|
||||
}
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2649,7 +2649,6 @@ int rt_ioctl_giwgenie(struct net_device *dev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef NATIVE_WPA_SUPPLICANT_SUPPORT
|
||||
#ifdef SIOCSIWGENIE
|
||||
if (pAd->StaCfg.WpaSupplicantUP == WPA_SUPPLICANT_ENABLE)
|
||||
{
|
||||
@ -2661,7 +2660,6 @@ int rt_ioctl_giwgenie(struct net_device *dev,
|
||||
}
|
||||
else
|
||||
#endif // SIOCSIWGENIE //
|
||||
#endif // NATIVE_WPA_SUPPLICANT_SUPPORT //
|
||||
{
|
||||
UCHAR RSNIe = IE_WPA;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user