android-dns: Use plugin features to register attribute handler

This commit is contained in:
Tobias Brunner
2013-06-11 11:18:19 +02:00
parent e183a6c36d
commit df60999b5f
@@ -43,11 +43,39 @@ METHOD(plugin_t, get_name, char*,
return "android-dns"; return "android-dns";
} }
/**
* Register handler
*/
static bool plugin_cb(private_android_dns_plugin_t *this,
plugin_feature_t *feature, bool reg, void *cb_data)
{
if (reg)
{
hydra->attributes->add_handler(hydra->attributes,
&this->handler->handler);
}
else
{
hydra->attributes->remove_handler(hydra->attributes,
&this->handler->handler);
}
return TRUE;
}
METHOD(plugin_t, get_features, int,
private_android_dns_plugin_t *this, plugin_feature_t *features[])
{
static plugin_feature_t f[] = {
PLUGIN_CALLBACK((plugin_feature_callback_t)plugin_cb, NULL),
PLUGIN_PROVIDE(CUSTOM, "android-dns"),
};
*features = f;
return countof(f);
}
METHOD(plugin_t, destroy, void, METHOD(plugin_t, destroy, void,
private_android_dns_plugin_t *this) private_android_dns_plugin_t *this)
{ {
hydra->attributes->remove_handler(hydra->attributes,
&this->handler->handler);
this->handler->destroy(this->handler); this->handler->destroy(this->handler);
free(this); free(this);
} }
@@ -63,14 +91,12 @@ plugin_t *android_dns_plugin_create()
.public = { .public = {
.plugin = { .plugin = {
.get_name = _get_name, .get_name = _get_name,
.reload = (void*)return_false, .get_features = _get_features,
.destroy = _destroy, .destroy = _destroy,
}, },
}, },
.handler = android_dns_handler_create(), .handler = android_dns_handler_create(),
); );
hydra->attributes->add_handler(hydra->attributes, &this->handler->handler);
return &this->public.plugin; return &this->public.plugin;
} }