Migrated remaining plugin_t implementations to INIT/METHOD macros
This commit is contained in:
@@ -48,10 +48,8 @@ struct private_medsrv_plugin_t {
|
||||
medsrv_config_t *config;
|
||||
};
|
||||
|
||||
/**
|
||||
* Implementation of plugin_t.destroy
|
||||
*/
|
||||
static void destroy(private_medsrv_plugin_t *this)
|
||||
METHOD(plugin_t, destroy, void,
|
||||
private_medsrv_plugin_t *this)
|
||||
{
|
||||
charon->backends->remove_backend(charon->backends, &this->config->backend);
|
||||
lib->credmgr->remove_set(lib->credmgr, &this->creds->set);
|
||||
@@ -67,9 +65,15 @@ static void destroy(private_medsrv_plugin_t *this)
|
||||
plugin_t *medsrv_plugin_create()
|
||||
{
|
||||
char *uri;
|
||||
private_medsrv_plugin_t *this = malloc_thing(private_medsrv_plugin_t);
|
||||
private_medsrv_plugin_t *this;
|
||||
|
||||
this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
|
||||
INIT(this,
|
||||
.public = {
|
||||
.plugin = {
|
||||
.destroy = _destroy,
|
||||
},
|
||||
},
|
||||
);
|
||||
|
||||
uri = lib->settings->get_str(lib->settings,
|
||||
"medsrv.database", NULL);
|
||||
|
||||
Reference in New Issue
Block a user