publish all IKE_SA metadata after tnc-ifmap plugin reload

This commit is contained in:
Andreas Steffen
2011-08-10 09:29:34 +02:00
parent 8c78772a05
commit 5144463634
3 changed files with 56 additions and 6 deletions
@@ -51,7 +51,7 @@ METHOD(plugin_t, reload, bool,
this->listener->destroy(this->listener);
}
this->listener = tnc_ifmap_listener_create();
this->listener = tnc_ifmap_listener_create(TRUE);
if (!this->listener)
{
return FALSE;
@@ -87,7 +87,7 @@ plugin_t *tnc_ifmap_plugin_create()
.destroy = _destroy,
},
},
.listener = tnc_ifmap_listener_create(),
.listener = tnc_ifmap_listener_create(FALSE),
);
if (this->listener)