2 * Copyright (C) 2008 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_klips_plugin.h"
19 #include "kernel_klips_ipsec.h"
23 typedef struct private_kernel_klips_plugin_t private_kernel_klips_plugin_t
;
26 * private data of kernel PF_KEY plugin
28 struct private_kernel_klips_plugin_t
{
30 * implements plugin interface
32 kernel_klips_plugin_t
public;
35 METHOD(plugin_t
, destroy
, void,
36 private_kernel_klips_plugin_t
*this)
38 hydra
->kernel_interface
->remove_ipsec_interface(hydra
->kernel_interface
,
39 (kernel_ipsec_constructor_t
)kernel_klips_ipsec_create
);
46 plugin_t
*kernel_klips_plugin_create()
48 private_kernel_klips_plugin_t
*this;
57 hydra
->kernel_interface
->add_ipsec_interface(hydra
->kernel_interface
,
58 (kernel_ipsec_constructor_t
)kernel_klips_ipsec_create
);
60 return &this->public.plugin
;