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
, get_name
, char*,
36 private_kernel_klips_plugin_t
*this)
38 return "kernel-klips";
41 METHOD(plugin_t
, destroy
, void,
42 private_kernel_klips_plugin_t
*this)
44 hydra
->kernel_interface
->remove_ipsec_interface(hydra
->kernel_interface
,
45 (kernel_ipsec_constructor_t
)kernel_klips_ipsec_create
);
52 plugin_t
*kernel_klips_plugin_create()
54 private_kernel_klips_plugin_t
*this;
59 .get_name
= _get_name
,
60 .reload
= (void*)return_false
,
65 hydra
->kernel_interface
->add_ipsec_interface(hydra
->kernel_interface
,
66 (kernel_ipsec_constructor_t
)kernel_klips_ipsec_create
);
68 return &this->public.plugin
;