summaryrefslogtreecommitdiff
path: root/src/libstrongswan/plugins/ldap/ldap_plugin.c
diff options
context:
space:
mode:
authorYves-Alexis Perez <corsac@corsac.net>2012-06-28 21:16:07 +0200
committerYves-Alexis Perez <corsac@corsac.net>2012-06-28 21:16:07 +0200
commitb34738ed08c2227300d554b139e2495ca5da97d6 (patch)
tree62f33b52820f2e49f0e53c0f8c636312037c8054 /src/libstrongswan/plugins/ldap/ldap_plugin.c
parent0a9d51a49042a68daa15b0c74a2b7f152f52606b (diff)
downloadvyos-strongswan-b34738ed08c2227300d554b139e2495ca5da97d6.tar.gz
vyos-strongswan-b34738ed08c2227300d554b139e2495ca5da97d6.zip
Imported Upstream version 4.6.4
Diffstat (limited to 'src/libstrongswan/plugins/ldap/ldap_plugin.c')
-rw-r--r--src/libstrongswan/plugins/ldap/ldap_plugin.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/libstrongswan/plugins/ldap/ldap_plugin.c b/src/libstrongswan/plugins/ldap/ldap_plugin.c
index 08d9748ce..210d33a93 100644
--- a/src/libstrongswan/plugins/ldap/ldap_plugin.c
+++ b/src/libstrongswan/plugins/ldap/ldap_plugin.c
@@ -37,11 +37,21 @@ METHOD(plugin_t, get_name, char*,
return "ldap";
}
+METHOD(plugin_t, get_features, int,
+ private_ldap_plugin_t *this, plugin_feature_t *features[])
+{
+ static plugin_feature_t f[] = {
+ PLUGIN_REGISTER(FETCHER, ldap_fetcher_create),
+ PLUGIN_PROVIDE(FETCHER, "ldap://"),
+ PLUGIN_PROVIDE(FETCHER, "ldaps://"),
+ };
+ *features = f;
+ return countof(f);
+}
+
METHOD(plugin_t, destroy, void,
private_ldap_plugin_t *this)
{
- lib->fetcher->remove_fetcher(lib->fetcher,
- (fetcher_constructor_t)ldap_fetcher_create);
free(this);
}
@@ -56,17 +66,12 @@ plugin_t *ldap_plugin_create()
.public = {
.plugin = {
.get_name = _get_name,
- .reload = (void*)return_false,
+ .get_features = _get_features,
.destroy = _destroy,
},
},
);
- lib->fetcher->add_fetcher(lib->fetcher,
- (fetcher_constructor_t)ldap_fetcher_create, "ldap://");
- lib->fetcher->add_fetcher(lib->fetcher,
- (fetcher_constructor_t)ldap_fetcher_create, "ldaps://");
-
return &this->public.plugin;
}