2 * Copyright (C) 2011 Andreas Steffen
3 * HSR 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
16 #include "tnc_ifmap_plugin.h"
17 #include "tnc_ifmap_listener.h"
21 typedef struct private_tnc_ifmap_plugin_t private_tnc_ifmap_plugin_t
;
24 * private data of tnc_ifmap plugin
26 struct private_tnc_ifmap_plugin_t
{
29 * implements plugin interface
31 tnc_ifmap_plugin_t
public;
34 * Listener interface, listens to CHILD_SA state changes
36 tnc_ifmap_listener_t
*listener
;
39 METHOD(plugin_t
, get_name
, char*,
40 private_tnc_ifmap_plugin_t
*this)
45 METHOD(plugin_t
, destroy
, void,
46 private_tnc_ifmap_plugin_t
*this)
50 charon
->bus
->remove_listener(charon
->bus
, &this->listener
->listener
);
51 this->listener
->destroy(this->listener
);
59 plugin_t
*tnc_ifmap_plugin_create()
61 private_tnc_ifmap_plugin_t
*this;
66 .get_name
= _get_name
,
67 .reload
= (void*)return_false
,
71 .listener
= tnc_ifmap_listener_create(),
76 charon
->bus
->add_listener(charon
->bus
, &this->listener
->listener
);
78 return &this->public.plugin
;