Add features support to eap-mschapv2
This commit is contained in:
@@ -25,13 +25,30 @@ METHOD(plugin_t, get_name, char*,
|
|||||||
return "eap-mschapv2";
|
return "eap-mschapv2";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
METHOD(plugin_t, get_features, int,
|
||||||
|
eap_mschapv2_plugin_t *this, plugin_feature_t *features[])
|
||||||
|
{
|
||||||
|
static plugin_feature_t f[] = {
|
||||||
|
PLUGIN_CALLBACK(eap_method_register, eap_mschapv2_create_server),
|
||||||
|
PLUGIN_PROVIDE(EAP_SERVER, EAP_MSCHAPV2),
|
||||||
|
PLUGIN_DEPENDS(CRYPTER, ENCR_DES_ECB, 8),
|
||||||
|
PLUGIN_DEPENDS(HASHER, HASH_MD4),
|
||||||
|
PLUGIN_DEPENDS(HASHER, HASH_SHA1),
|
||||||
|
PLUGIN_DEPENDS(RNG, RNG_WEAK),
|
||||||
|
PLUGIN_CALLBACK(eap_method_register, eap_mschapv2_create_peer),
|
||||||
|
PLUGIN_PROVIDE(EAP_PEER, EAP_MSCHAPV2),
|
||||||
|
PLUGIN_DEPENDS(CRYPTER, ENCR_DES_ECB, 8),
|
||||||
|
PLUGIN_DEPENDS(HASHER, HASH_MD4),
|
||||||
|
PLUGIN_DEPENDS(HASHER, HASH_SHA1),
|
||||||
|
PLUGIN_DEPENDS(RNG, RNG_WEAK),
|
||||||
|
};
|
||||||
|
*features = f;
|
||||||
|
return countof(f);
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(plugin_t, destroy, void,
|
METHOD(plugin_t, destroy, void,
|
||||||
eap_mschapv2_plugin_t *this)
|
eap_mschapv2_plugin_t *this)
|
||||||
{
|
{
|
||||||
charon->eap->remove_method(charon->eap,
|
|
||||||
(eap_constructor_t)eap_mschapv2_create_server);
|
|
||||||
charon->eap->remove_method(charon->eap,
|
|
||||||
(eap_constructor_t)eap_mschapv2_create_peer);
|
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,16 +62,11 @@ plugin_t *eap_mschapv2_plugin_create()
|
|||||||
INIT(this,
|
INIT(this,
|
||||||
.plugin = {
|
.plugin = {
|
||||||
.get_name = _get_name,
|
.get_name = _get_name,
|
||||||
.reload = (void*)return_false,
|
.get_features = _get_features,
|
||||||
.destroy = _destroy,
|
.destroy = _destroy,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
charon->eap->add_method(charon->eap, EAP_MSCHAPV2, 0, EAP_SERVER,
|
|
||||||
(eap_constructor_t)eap_mschapv2_create_server);
|
|
||||||
charon->eap->add_method(charon->eap, EAP_MSCHAPV2, 0, EAP_PEER,
|
|
||||||
(eap_constructor_t)eap_mschapv2_create_peer);
|
|
||||||
|
|
||||||
return &this->plugin;
|
return &this->plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user