From 650758b16e5185505a3fbc1307949340af70b611 Mon Sep 17 00:00:00 2001 From: Hans Dedecker Date: Thu, 19 Jan 2017 15:59:54 +0100 Subject: interface-ip: route proto config support (FS#170) Route proto support is usefull when using route distribution via a routing daemon. The route proto parameter can be specified via the route proto uci config parameter, it can hold a numerical value or the string values unspec, kernel, boot, static or a string present in /etc/iproute2/rt_protos. Signed-off-by: Hans Dedecker --- ubus.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ubus.c') diff --git a/ubus.c b/ubus.c index 29924c1..0123b17 100644 --- a/ubus.c +++ b/ubus.c @@ -486,6 +486,9 @@ interface_ip_dump_route_list(struct interface_ip_settings *ip, bool enabled) if (route->flags & DEVROUTE_TYPE) blobmsg_add_u32(&b, "type", route->type); + if (route->flags & DEVROUTE_PROTO) + blobmsg_add_u32(&b, "proto", route->proto); + if (route->flags & DEVROUTE_MTU) blobmsg_add_u32(&b, "mtu", route->mtu); -- cgit v1.2.1