optionally skip dlclose() of IMCs/IMVs in order to track memory leaks

This commit is contained in:
Andreas Steffen 2012-12-09 19:35:23 +01:00
parent 7d17eeb7ef
commit 92e75e4535
2 changed files with 6 additions and 2 deletions

View File

@ -21,6 +21,7 @@
#include <tncif_pa_subtypes.h>
#include <utils/debug.h>
#include <daemon.h>
#include <library.h>
#include <collections/linked_list.h>
#include <threading/mutex.h>
@ -302,7 +303,8 @@ METHOD(imc_t, type_supported, bool,
METHOD(imc_t, destroy, void,
private_tnc_imc_t *this)
{
if (this->handle)
if (this->handle && lib->settings->get_bool(lib->settings,
"%s.plugins.tnc-imc.dlclose", TRUE, charon->name))
{
dlclose(this->handle);
}

View File

@ -21,6 +21,7 @@
#include <tncif_pa_subtypes.h>
#include <utils/debug.h>
#include <daemon.h>
#include <library.h>
#include <collections/linked_list.h>
#include <threading/mutex.h>
@ -298,7 +299,8 @@ METHOD(imv_t, type_supported, bool,
METHOD(imv_t, destroy, void,
private_tnc_imv_t *this)
{
if (this->handle)
if (this->handle && lib->settings->get_bool(lib->settings,
"%s.plugins.tnc-imv.dlclose", TRUE, charon->name))
{
dlclose(this->handle);
}