Add features support to eap-tnc plugin
This commit is contained in:
@@ -24,13 +24,24 @@ METHOD(plugin_t, get_name, char*,
|
|||||||
return "eap-tnc";
|
return "eap-tnc";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
METHOD(plugin_t, get_features, int,
|
||||||
|
eap_tnc_plugin_t *this, plugin_feature_t *features[])
|
||||||
|
{
|
||||||
|
static plugin_feature_t f[] = {
|
||||||
|
PLUGIN_CALLBACK(eap_method_register, eap_tnc_create_server),
|
||||||
|
PLUGIN_PROVIDE(EAP_SERVER, EAP_TNC),
|
||||||
|
PLUGIN_DEPENDS(EAP_SERVER, EAP_TTLS),
|
||||||
|
PLUGIN_CALLBACK(eap_method_register, eap_tnc_create_peer),
|
||||||
|
PLUGIN_PROVIDE(EAP_PEER, EAP_TNC),
|
||||||
|
PLUGIN_DEPENDS(EAP_PEER, EAP_TTLS),
|
||||||
|
};
|
||||||
|
*features = f;
|
||||||
|
return countof(f);
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(plugin_t, destroy, void,
|
METHOD(plugin_t, destroy, void,
|
||||||
eap_tnc_plugin_t *this)
|
eap_tnc_plugin_t *this)
|
||||||
{
|
{
|
||||||
charon->eap->remove_method(charon->eap,
|
|
||||||
(eap_constructor_t)eap_tnc_create_server);
|
|
||||||
charon->eap->remove_method(charon->eap,
|
|
||||||
(eap_constructor_t)eap_tnc_create_peer);
|
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,16 +55,11 @@ plugin_t *eap_tnc_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_TNC, 0, EAP_SERVER,
|
|
||||||
(eap_constructor_t)eap_tnc_create_server);
|
|
||||||
charon->eap->add_method(charon->eap, EAP_TNC, 0, EAP_PEER,
|
|
||||||
(eap_constructor_t)eap_tnc_create_peer);
|
|
||||||
|
|
||||||
return &this->plugin;
|
return &this->plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user