2 * Copyright (C) 2009 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 #include "kernel_pfroute_plugin.h"
19 #include "kernel_pfroute_net.h"
23 typedef struct private_kernel_pfroute_plugin_t private_kernel_pfroute_plugin_t
;
26 * private data of kernel PF_ROUTE plugin
28 struct private_kernel_pfroute_plugin_t
{
30 * implements plugin interface
32 kernel_pfroute_plugin_t
public;
35 METHOD(plugin_t
, destroy
, void,
36 private_kernel_pfroute_plugin_t
*this)
38 hydra
->kernel_interface
->remove_net_interface(hydra
->kernel_interface
,
39 (kernel_net_constructor_t
)kernel_pfroute_net_create
);
46 plugin_t
*kernel_pfroute_plugin_create()
48 private_kernel_pfroute_plugin_t
*this;
57 hydra
->kernel_interface
->add_net_interface(hydra
->kernel_interface
,
58 (kernel_net_constructor_t
)kernel_pfroute_net_create
);
60 return &this->public.plugin
;