ikev1: Trigger children_migrate event if CHILD_SAs are adopted
This commit is contained in:
@@ -1737,7 +1737,8 @@ static void adopt_children_and_vips(ike_sa_t *old, ike_sa_t *new)
|
||||
host_t *vip;
|
||||
int chcount = 0, vipcount = 0;
|
||||
|
||||
|
||||
charon->bus->children_migrate(charon->bus, new->get_id(new),
|
||||
new->get_unique_id(new));
|
||||
enumerator = old->create_child_sa_enumerator(old);
|
||||
while (enumerator->enumerate(enumerator, &child_sa))
|
||||
{
|
||||
@@ -1760,6 +1761,7 @@ static void adopt_children_and_vips(ike_sa_t *old, ike_sa_t *new)
|
||||
/* ...trigger the analogous event on the new SA */
|
||||
charon->bus->set_sa(charon->bus, new);
|
||||
charon->bus->assign_vips(charon->bus, new, TRUE);
|
||||
charon->bus->children_migrate(charon->bus, NULL, 0);
|
||||
charon->bus->set_sa(charon->bus, old);
|
||||
|
||||
if (chcount || vipcount)
|
||||
|
||||
@@ -1475,6 +1475,8 @@ METHOD(task_manager_t, queue_ike_reauth, void,
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
|
||||
charon->bus->children_migrate(charon->bus, new->get_id(new),
|
||||
new->get_unique_id(new));
|
||||
enumerator = this->ike_sa->create_child_sa_enumerator(this->ike_sa);
|
||||
while (enumerator->enumerate(enumerator, &child_sa))
|
||||
{
|
||||
@@ -1482,6 +1484,9 @@ METHOD(task_manager_t, queue_ike_reauth, void,
|
||||
new->add_child_sa(new, child_sa);
|
||||
}
|
||||
enumerator->destroy(enumerator);
|
||||
charon->bus->set_sa(charon->bus, new);
|
||||
charon->bus->children_migrate(charon->bus, NULL, 0);
|
||||
charon->bus->set_sa(charon->bus, this->ike_sa);
|
||||
|
||||
if (!new->get_child_count(new))
|
||||
{ /* check if a Quick Mode task is queued (UNITY_LOAD_BALANCE case) */
|
||||
|
||||
Reference in New Issue
Block a user