diff options
author | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2016-07-07 17:29:08 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-10-11 17:09:07 +0200 |
commit | cc70e0ae30920ca835bf011f8040afb6fea43f45 (patch) | |
tree | c4d503c5a556bee69842f38b28e85a182c70bfb8 /config.c | |
parent | 2478974dfde05063cbf0233e3d3c434ca2f46c7c (diff) |
Implement routing groups and volume ramp up/down
Change-Id: I0e9d3b8b8be4d124907214c165617d86be6906fc
Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -74,13 +74,12 @@ static zone_def zones[] = { { NULL } }; - static rtgroup_def rtgroups[] = { { agl_input, "Phone", "PhoneCard", agl_router_phone_accept, - agl_router_phone_compare + agl_router_phone_effect }, { 0, NULL, NULL, NULL, NULL } @@ -128,7 +127,7 @@ bool use_default_configuration (struct userdata *u) for (r = rtgroups; r->name; r++) agl_router_create_rtgroup (u, r->type, r->name, r->node_desc, - r->accept, r->compare); + r->accept, r->effect); for (c = classmap; c->rtgroup; c++) agl_router_assign_class_to_rtgroup (u, c->class, c->zone, |