Add features support to kernel-pfroute plugin

This commit is contained in:
Martin Willi
2011-10-14 10:05:48 +02:00
parent e99cb0673d
commit 8da1f9f25d
@@ -38,11 +38,20 @@ METHOD(plugin_t, get_name, char*,
return "kernel-pfroute";
}
METHOD(plugin_t, get_features, int,
private_kernel_pfroute_plugin_t *this, plugin_feature_t *features[])
{
static plugin_feature_t f[] = {
PLUGIN_CALLBACK(kernel_net_register, kernel_pfroute_net_create),
PLUGIN_PROVIDE(CUSTOM, "kernel-net"),
};
*features = f;
return countof(f);
}
METHOD(plugin_t, destroy, void,
private_kernel_pfroute_plugin_t *this)
{
hydra->kernel_interface->remove_net_interface(hydra->kernel_interface,
(kernel_net_constructor_t)kernel_pfroute_net_create);
free(this);
}
@@ -57,13 +66,11 @@ plugin_t *kernel_pfroute_plugin_create()
.public = {
.plugin = {
.get_name = _get_name,
.reload = (void*)return_false,
.get_features = _get_features,
.destroy = _destroy,
},
},
);
hydra->kernel_interface->add_net_interface(hydra->kernel_interface,
(kernel_net_constructor_t)kernel_pfroute_net_create);
return &this->public.plugin;
}