aboutsummaryrefslogtreecommitdiffstats
path: root/src/pluto/plugins/xauth/xauth_plugin.c
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2011-04-11 16:41:25 +0200
committerMartin Willi <martin@revosec.ch>2011-04-15 10:07:12 +0200
commit6e2791715b7534b601ff5d5163d63d88ad7a8a5e (patch)
tree2228f68dd17886b3a8b6bb3a2db2ae92a26570d9 /src/pluto/plugins/xauth/xauth_plugin.c
parent2b36342551c4d14da6eb29295ebdd60978a2d563 (diff)
downloadstrongswan-6e2791715b7534b601ff5d5163d63d88ad7a8a5e.tar.bz2
strongswan-6e2791715b7534b601ff5d5163d63d88ad7a8a5e.tar.xz
Migrated remaining plugin_t implementations to INIT/METHOD macros
Diffstat (limited to 'src/pluto/plugins/xauth/xauth_plugin.c')
-rw-r--r--src/pluto/plugins/xauth/xauth_plugin.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/pluto/plugins/xauth/xauth_plugin.c b/src/pluto/plugins/xauth/xauth_plugin.c
index 74e16eacd..841464943 100644
--- a/src/pluto/plugins/xauth/xauth_plugin.c
+++ b/src/pluto/plugins/xauth/xauth_plugin.c
@@ -18,10 +18,9 @@
#include "xauth_plugin.h"
#include "xauth_default_provider.h"
#include "xauth_default_verifier.h"
-/**
- * Implementation of plugin_t.destroy
- */
-static void destroy(xauth_plugin_t *this)
+
+METHOD(plugin_t, destroy, void,
+ xauth_plugin_t *this)
{
free(this);
}
@@ -31,9 +30,13 @@ static void destroy(xauth_plugin_t *this)
*/
plugin_t *xauth_plugin_create()
{
- xauth_plugin_t *this = malloc_thing(xauth_plugin_t);
+ xauth_plugin_t *this;
- this->plugin.destroy = (void(*)(plugin_t*))destroy;
+ INIT(this,
+ .plugin = {
+ .destroy = _destroy,
+ },
+ );
pluto->xauth->add_provider(pluto->xauth, xauth_default_provider_create());
pluto->xauth->add_verifier(pluto->xauth, xauth_default_verifier_create());