vici: Explicitly notify listeners of the type of ike/child-updown event

This commit is contained in:
Tobias Brunner 2015-05-29 18:38:28 +02:00
parent cdd7d2b197
commit 085b8f4fb0
1 changed files with 11 additions and 0 deletions

View File

@ -1054,6 +1054,12 @@ METHOD(listener_t, ike_updown, bool,
now = time_monotonic(NULL);
b = vici_builder_create();
if (up)
{
b->add_kv(b, "up", "yes");
}
b->begin_section(b, ike_sa->get_name(ike_sa));
list_ike(this, b, ike_sa, now);
b->begin_section(b, "child-sas");
@ -1080,6 +1086,11 @@ METHOD(listener_t, child_updown, bool,
now = time_monotonic(NULL);
b = vici_builder_create();
if (up)
{
b->add_kv(b, "up", "yes");
}
b->begin_section(b, ike_sa->get_name(ike_sa));
list_ike(this, b, ike_sa, now);
b->begin_section(b, "child-sas");