EapPeerGetResponseAttributes (Compact 2013)
3/26/2014
Obtains an array of EAP response attributes from the EAP method.
Syntax
DWORD WINAPI EapPeerGetResponseAttributes(
__in EAP_SESSION_HANDLE sessionHandle,
__out EapAttributes* pAttribs,
__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.
- pAttribs
A pointer to a EAP_ATTRIBUTES structure that contains an array of EAP authentication response attributes for the supplicant.
- ppEapError
A pointer to a pointer to 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 calling EapPeerFreeErrorMemory.
Remarks
EapPeerGetResponseAttributes is called by EAPHost when a prior call indicates that EAP response attributes are available.
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
EapPeerSetResponseAttributes