Share via


EapPeerGetResult (Compact 2013)

3/26/2014

Obtains the result of an authentication session from the EAP method.

This function is called when a method has completed authentication, or when the lower layer receives an alternative result.

Syntax

DWORD WINAPI EapPeerGetResult(
  __in   EAP_SESSION_HANDLE sessionHandle,
  __in   EapPeerMethodResultReason reason,
  __out  EapPeerMethodResult* ppResult,
  __out  EAP_ERROR** ppEapError
);

Parameters

  • sessionHandle
    A pointer to an EAP_SESSION_HANDLE structure that contains the unique handle for this EAP authentication session on the EAPHost server. This handle is returned in the pSessionHandle parameter in a previous call to EapPeerBeginSession.
  • reason
    A EapPeerMethodResultReason structure that specifies the reason code for the authentication result returned in ppResult.
  • ppResult
    A pointer to a EapPeerMethodResult structure that contains the authentication results.
  • ppEapError
    A pointer to the address of an EAP_ERROR structure that contains any errors raised during the execution of this function call. After using the error data, this memory must be freed by passing a pointer to EapPeerFreeErrorMemory.

Remarks

This call is performed by a peer-based EAPHost by using a function pointer to this API. This API must be implemented on the EAP method loaded by EAPHost, and must strictly comply with the syntax and parameter types that are specified in the documentation.

See Also

Reference

EAPHost Peer Method Run-Time Functions