eap: Add an optional authentication details getter to the EAP method interface

This commit is contained in:
Martin Willi 2015-01-29 11:14:21 +01:00
parent 1fd7025499
commit cfe7125357
1 changed files with 12 additions and 0 deletions

View File

@ -136,6 +136,18 @@ struct eap_method_t {
*/
void (*set_identifier) (eap_method_t *this, u_int8_t identifier);
/**
* Get authentication details performed by this EAP method.
*
* After EAP completion, the auth data contains additional information
* of the authentication process, used certificates etc.
* This method is optional to implement, but if it is, it must return
* a valid auth_cfg.
*
* @return auth method, internal data
*/
auth_cfg_t* (*get_auth)(eap_method_t *this);
/**
* Destroys a eap_method_t object.
*/