eap-tls: Support EAP auth information getter in EAP-TLS

This commit is contained in:
Martin Willi 2015-01-29 11:15:17 +01:00
parent 666c552381
commit de2a62cfb6
1 changed files with 7 additions and 0 deletions

View File

@ -109,6 +109,12 @@ METHOD(eap_method_t, is_mutual, bool,
return TRUE;
}
METHOD(eap_method_t, get_auth, auth_cfg_t*,
private_eap_tls_t *this)
{
return this->tls_eap->get_auth(this->tls_eap);
}
METHOD(eap_method_t, destroy, void,
private_eap_tls_t *this)
{
@ -138,6 +144,7 @@ static eap_tls_t *eap_tls_create(identification_t *server,
.get_msk = _get_msk,
.get_identifier = _get_identifier,
.set_identifier = _set_identifier,
.get_auth = _get_auth,
.destroy = _destroy,
},
},