X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=scripts%2Fnetifd-proto.sh;h=447f0f660f2c099654940801e0a2e5c650769df1;hp=999bd6829dc3a952966dddfaeba252440a1965f7;hb=a7e508b71c1cf3ee9d401510d298195067fba8e5;hpb=1bba3f853bf5b2974b32303c55dfbc0e78d01965;ds=sidebyside diff --git a/scripts/netifd-proto.sh b/scripts/netifd-proto.sh index 999bd68..447f0f6 100644 --- a/scripts/netifd-proto.sh +++ b/scripts/netifd-proto.sh @@ -121,8 +121,9 @@ proto_add_ipv4_route() { local mask="$2" local gw="$3" local source="$4" + local metric="$5" - append PROTO_ROUTE "$target/$mask/$gw////$source" + append PROTO_ROUTE "$target/$mask/$gw/$metric///$source" } proto_add_ipv6_route() { @@ -361,6 +362,7 @@ init_proto() { dump) add_protocol() { no_device=0 + no_proto_task=0 available=0 renew_handler=0 @@ -372,8 +374,10 @@ init_proto() { eval "proto_$1_init_config" json_close_array json_add_boolean no-device "$no_device" + json_add_boolean no-proto-task "$no_proto_task" json_add_boolean available "$available" json_add_boolean renew-handler "$renew_handler" + json_add_boolean lasterror "$lasterror" json_dump } ;;