Added features support to dnskey plugin

This commit is contained in:
Andreas Steffen 2011-10-30 17:57:16 +01:00
parent 80fe26ec74
commit 1c2008f07f
1 changed files with 14 additions and 7 deletions

View File

@ -37,11 +37,22 @@ METHOD(plugin_t, get_name, char*,
return "dnskey";
}
METHOD(plugin_t, get_features, int,
private_dnskey_plugin_t *this, plugin_feature_t *features[])
{
static plugin_feature_t f[] = {
PLUGIN_REGISTER(PUBKEY, dnskey_public_key_load, FALSE),
PLUGIN_PROVIDE(PUBKEY, KEY_ANY),
PLUGIN_REGISTER(PUBKEY, dnskey_public_key_load, FALSE),
PLUGIN_PROVIDE(PUBKEY, KEY_RSA),
};
*features = f;
return countof(f);
}
METHOD(plugin_t, destroy, void,
private_dnskey_plugin_t *this)
{
lib->creds->remove_builder(lib->creds,
(builder_function_t)dnskey_public_key_load);
free(this);
}
@ -56,15 +67,11 @@ plugin_t *dnskey_plugin_create()
.public = {
.plugin = {
.get_name = _get_name,
.reload = (void*)return_false,
.get_features = _get_features,
.destroy = _destroy,
},
},
);
lib->creds->add_builder(lib->creds, CRED_PUBLIC_KEY, KEY_ANY, FALSE,
(builder_function_t)dnskey_public_key_load);
lib->creds->add_builder(lib->creds, CRED_PUBLIC_KEY, KEY_RSA, FALSE,
(builder_function_t)dnskey_public_key_load);
return &this->public.plugin;
}