43ba844103a5520784b3c3de4105e8f089479468
2 * Copyright (C) 2010 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_imc_plugin.h"
18 #include <libtnctncc.h>
22 METHOD(plugin_t
, destroy
, void,
23 tnc_imc_plugin_t
*this)
25 libtnc_tncc_Terminate();
32 plugin_t
*tnc_imc_plugin_create()
34 char *tnc_config
, *pref_lang
;
36 tnc_imc_plugin_t
*this;
44 pref_lang
= lib
->settings
->get_str(lib
->settings
,
45 "charon.plugins.tnc-imc.preferred_language", "en");
46 tnc_config
= lib
->settings
->get_str(lib
->settings
,
47 "charon.plugins.tnc-imc.tnc_config", "/etc/tnc_config");
49 imc_count
= libtnc_imc_load_config(tnc_config
);
53 DBG1(DBG_IKE
, "TNC IMC initialization failed");
58 DBG1(DBG_IKE
, "loaded %d TNC IMC%s", imc_count
,
59 (imc_count
== 1) ?
"":"s");
60 libtnc_tncc_PreferredLanguage(pref_lang
);