DOT11_MSONEX_RESULT_PARAMS (Compact 2013)

3/26/2014

This structure is used to exchange result parameters with an IHV module.

Syntax

typedef struct _DOT11_MSONEX_RESULT_PARAMS {
  ONEX_AUTH_STATUS  Dot11OnexAuthStatus;
  ONEX_REASON_CODE  Dot11OneXReasonCode;
  PBYTE  pbMPPESendKey;
  DWORD  dwMPPESendKeyLen;
  PBYTE  pbMPPERecvKey;
  DWORD  dwMPPERecvKeyLen;
  PDOT11_EAP_RESULT  pDot11EapResult;
} DOT11_MSONEX_RESULT_PARAMS, *PDOT11_MSONEX_RESULT_PARAMS;

Members

  • Dot11OnexAuthStatus
    A ONEX_AUTH_STATUS type that specifies the authorization status of the 802.1X exchange
  • Dot11OneXReasonCode
    A ONEX_REASON_CODE type that specifies the reason code of the 802.1X exchange
  • pbMPPESendKey
    A pointer to a Microsoft Point-to-Point Encryption (MPPE) Send-Key. This key is encrypted and should be decrypted by calling the CryptUnprotectData function.
  • dwMPPESendKeyLen
    The size, in bytes, of the MPPE Send-Key
  • pbMPPERecvKey
    A pointer to an MPPE Receive-Key. This key is encrypted and should be decrypted by calling the CryptUnprotectData function.
  • dwMPPERecvKeyLen
    The size, in bytes, of the MPPE Receive-Key
  • pDot11EapResult
    A pointer to a DOT11_EAP_RESULT structure that contains results from an EAP method

Requirements

Header

wlanihv.h

See Also

Reference

Native 802.11 Data Types
ONEX_AUTH_STATUS
ONEX_REASON_CODE
DOT11_EAP_RESULT
Native 802.11 Wireless LAN Reference

Other Resources

CryptUnprotectData