089a3ed5720b929d5353d88ecc76cdd223ebcdc8
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 "tnccs_dynamic_plugin.h"
17 #include "tnccs_dynamic.h"
21 METHOD(plugin_t
, get_name
, char*,
22 tnccs_dynamic_plugin_t
*this)
24 return "tnccs-dynamic";
27 METHOD(plugin_t
, destroy
, void,
28 tnccs_dynamic_plugin_t
*this)
30 charon
->tnccs
->remove_method(charon
->tnccs
,
31 (tnccs_constructor_t
)tnccs_dynamic_create
);
38 plugin_t
*tnccs_dynamic_plugin_create()
40 tnccs_dynamic_plugin_t
*this;
44 .get_name
= _get_name
,
45 .reload
= (void*)return_false
,
50 charon
->tnccs
->add_method(charon
->tnccs
, TNCCS_DYNAMIC
,
51 (tnccs_constructor_t
)tnccs_dynamic_create
);