aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2011-10-30 17:57:16 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2011-10-30 17:57:16 +0100
commit1c2008f07f1148f893378095f75a5310d6960808 (patch)
tree91bf8b29703c5e705e6df418b8ecb24f33d240a6 /src
parent80fe26ec74cf9112f0453985b1987a3fc73b9b92 (diff)
downloadstrongswan-1c2008f07f1148f893378095f75a5310d6960808.tar.bz2
strongswan-1c2008f07f1148f893378095f75a5310d6960808.tar.xz
Added features support to dnskey plugin
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/plugins/dnskey/dnskey_plugin.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/libstrongswan/plugins/dnskey/dnskey_plugin.c b/src/libstrongswan/plugins/dnskey/dnskey_plugin.c
index 4e08746f8..b6863e8e3 100644
--- a/src/libstrongswan/plugins/dnskey/dnskey_plugin.c
+++ b/src/libstrongswan/plugins/dnskey/dnskey_plugin.c
@@ -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;
}