aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/random/random_plugin.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-12-04 11:37:03 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-12-04 11:37:03 +0100
commit1bb67ff8524a0b864eb4d523993f09a643c8a0dc (patch)
treed54943a3914d5ade75a0c9e6d0fc1ccf428d9b97 /src/libstrongswan/plugins/random/random_plugin.c
parent79bbe64e173313ae6aeec70d71dad2e5d599cfa0 (diff)
downloadstrongswan-1bb67ff8524a0b864eb4d523993f09a643c8a0dc.tar.bz2
strongswan-1bb67ff8524a0b864eb4d523993f09a643c8a0dc.tar.xz
Migrated random plugin to INIT/METHOD macros
Diffstat (limited to 'src/libstrongswan/plugins/random/random_plugin.c')
-rw-r--r--src/libstrongswan/plugins/random/random_plugin.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/libstrongswan/plugins/random/random_plugin.c b/src/libstrongswan/plugins/random/random_plugin.c
index 39678ba71..2c4def9fb 100644
--- a/src/libstrongswan/plugins/random/random_plugin.c
+++ b/src/libstrongswan/plugins/random/random_plugin.c
@@ -31,10 +31,8 @@ struct private_random_plugin_t {
random_plugin_t public;
};
-/**
- * Implementation of random_plugin_t.gmptroy
- */
-static void destroy(private_random_plugin_t *this)
+METHOD(plugin_t, destroy, void,
+ private_random_plugin_t *this)
{
lib->crypto->remove_rng(lib->crypto,
(rng_constructor_t)random_rng_create);
@@ -46,9 +44,15 @@ static void destroy(private_random_plugin_t *this)
*/
plugin_t *random_plugin_create()
{
- private_random_plugin_t *this = malloc_thing(private_random_plugin_t);
+ private_random_plugin_t *this;
- this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
+ INIT(this,
+ .public = {
+ .plugin = {
+ .destroy = _destroy,
+ },
+ },
+ );
lib->crypto->add_rng(lib->crypto, RNG_STRONG,
(rng_constructor_t)random_rng_create);