Dot11ExtIhvOneXIndicateResult (Compact 2013)
3/26/2014
The operating system calls this function when it finishes an 802.1X authentication operation with the access point (AP).
Syntax
DWORD WINAPI Dot11ExtIhvOneXIndicateResult(
HANDLE hIhvExtAdapter,
DOT11_MSONEX_RESULT msOneXResult,
PDOT11_MSONEX_RESULT_PARAMS pDot11MsOneXResultParams
);
Parameters
- hIhvExtAdapter
[in] The handle that is used by the IHV Extensions DLL to reference the WLAN adapter. This handle value was specified through a previous call to the Dot11ExtIhvInitAdapter IHV Handler function.
- msOneXResult
[in] The result of the 802.1X authentication operation that was specified through a DOT11_MSONEX_RESULT enumeration value.
- pDot11MsOneXResultParams
[in] A pointer to a DOT11_MSONEX_RESULT_PARAMS structure that contains result parameters.
Return Value
If the call succeeds, the function returns ERROR_SUCCESS. Otherwise, it returns an error code defined in Winerror.h.
Remarks
The IHV Extensions DLL can start an 802.1X authentication operation by using the 802.1X module of the Native 802.11 framework. This enables the DLL to use the standard extensible authentication protocol (EAP) algorithms that are supported by the operating system.
The IHV Extensions DLL starts the 802.1X authentication operation by calling the Dot11ExtStartOneX function. Dot11ExtStartOneX can be called only during a post-association operation or after the operation has finished.
After the operating system has completed the 802.1X authentication operation, it calls the Dot11ExtIhvOneXIndicateResult IHV Handler function.
Requirements
Header |
wlanihv.h |
See Also
Reference
Native 802.11 IHV Handler Functions
Dot11ExtIhvInitAdapter
DOT11_MSONEX_RESULT
DOT11_MSONEX_RESULT_PARAMS
Dot11ExtStartOneX
Dot11ExtIhvOneXIndicateResult
Dot11ExtIhvReceivePacket
Dot11ExtProcessOneXPacket
Native 802.11 IHV Extensions DLL