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;
36 * Implementation of plugin_t.destroy
38 static void destroy(private_kernel_pfroute_plugin_t
*this)
40 hydra
->kernel_interface
->remove_net_interface(hydra
->kernel_interface
,
41 (kernel_net_constructor_t
)kernel_pfroute_net_create
);
48 plugin_t
*kernel_pfroute_plugin_create()
50 private_kernel_pfroute_plugin_t
*this = malloc_thing(private_kernel_pfroute_plugin_t
);
52 this->public.plugin
.destroy
= (void(*)(plugin_t
*))destroy
;
54 hydra
->kernel_interface
->add_net_interface(hydra
->kernel_interface
,
55 (kernel_net_constructor_t
)kernel_pfroute_net_create
);
57 return &this->public.plugin
;