|
@@ -1063,7 +1063,7 @@ ieee80211_association_req(struct ieee80211_network *beacon,
|
|
|
if (beacon->bCkipSupported) {
|
|
|
static u8 AironetIeOui[] = {0x00, 0x01, 0x66}; // "4500-client"
|
|
|
u8 CcxAironetBuf[30];
|
|
|
- OCTET_STRING osCcxAironetIE;
|
|
|
+ struct octet_string osCcxAironetIE;
|
|
|
|
|
|
memset(CcxAironetBuf, 0, 30);
|
|
|
osCcxAironetIE.Octet = CcxAironetBuf;
|
|
@@ -1087,7 +1087,7 @@ ieee80211_association_req(struct ieee80211_network *beacon,
|
|
|
|
|
|
if (beacon->bCcxRmEnable) {
|
|
|
static u8 CcxRmCapBuf[] = {0x00, 0x40, 0x96, 0x01, 0x01, 0x00};
|
|
|
- OCTET_STRING osCcxRmCap;
|
|
|
+ struct octet_string osCcxRmCap;
|
|
|
|
|
|
osCcxRmCap.Octet = CcxRmCapBuf;
|
|
|
osCcxRmCap.Length = sizeof(CcxRmCapBuf);
|
|
@@ -1100,7 +1100,7 @@ ieee80211_association_req(struct ieee80211_network *beacon,
|
|
|
|
|
|
if (beacon->BssCcxVerNumber >= 2) {
|
|
|
u8 CcxVerNumBuf[] = {0x00, 0x40, 0x96, 0x03, 0x00};
|
|
|
- OCTET_STRING osCcxVerNum;
|
|
|
+ struct octet_string osCcxVerNum;
|
|
|
CcxVerNumBuf[4] = beacon->BssCcxVerNumber;
|
|
|
osCcxVerNum.Octet = CcxVerNumBuf;
|
|
|
osCcxVerNum.Length = sizeof(CcxVerNumBuf);
|