added imc/imv_manager remove method

This commit is contained in:
Andreas Steffen
2010-11-09 20:43:51 +01:00
parent bcd386a95f
commit 1dc7b22c53
4 changed files with 56 additions and 0 deletions
@@ -67,12 +67,31 @@ METHOD(imc_manager_t, add, bool,
{
DBG1(DBG_TNC, "could not provide bind function for IMC '%s'",
imc->get_name(imc));
this->imcs->remove_last(this->imcs, (void**)&imc);
return FALSE;
}
return TRUE;
}
METHOD(imc_manager_t, remove_, imc_t*,
private_tnc_imc_manager_t *this, TNC_IMCID id)
{
enumerator_t *enumerator;
imc_t *imc;
enumerator = this->imcs->create_enumerator(this->imcs);
while (enumerator->enumerate(enumerator, &imc))
{
if (id == imc->get_id(imc))
{
this->imcs->remove_at(this->imcs, enumerator);
return imc;
}
}
enumerator->destroy(enumerator);
}
METHOD(imc_manager_t, notify_connection_change, void,
private_tnc_imc_manager_t *this, TNC_ConnectionID id,
TNC_ConnectionState state)
@@ -178,6 +197,7 @@ imc_manager_t* tnc_imc_manager_create(void)
INIT(this,
.public = {
.add = _add,
.remove = _remove_, /* avoid name conflict with stdio.h */
.notify_connection_change = _notify_connection_change,
.begin_handshake = _begin_handshake,
.set_message_types = _set_message_types,