X-Git-Url: http://git.openwrt.org/?p=feed%2Frouting.git;a=blobdiff_plain;f=batman-adv%2Ffiles%2Flib%2Fnetifd%2Fproto%2Fbatadv_hardif.sh;h=6eb597ff610683ce4d478e83d4515fe518228329;hp=9283d2bed1dcf73b18dba72887da4e7993cd7cb5;hb=34b730e6aba5cbbe35c0facee59158de70706f17;hpb=b57b8dc6d31f4c98c36f434417c4dda06e9d468f diff --git a/batman-adv/files/lib/netifd/proto/batadv_hardif.sh b/batman-adv/files/lib/netifd/proto/batadv_hardif.sh index 9283d2b..6eb597f 100755 --- a/batman-adv/files/lib/netifd/proto/batadv_hardif.sh +++ b/batman-adv/files/lib/netifd/proto/batadv_hardif.sh @@ -7,20 +7,29 @@ } proto_batadv_hardif_init_config() { + proto_config_add_int 'elp_interval' proto_config_add_string "master" + proto_config_add_string 'throughput_override' } proto_batadv_hardif_setup() { local config="$1" local iface="$2" + local elp_interval local master + local throughput_override + json_get_vars elp_interval json_get_vars master + json_get_vars throughput_override ( proto_add_host_dependency "$config" '' "$master" ) - batctl -m "$master" interface -M add "$iface" + batctl meshif "$master" interface -M add "$iface" + + [ -n "$elp_interval" ] && batctl hardif "$iface" elp_interval "$elp_interval" + [ -n "$throughput_override" ] && batctl hardif "$iface" throughput_override "$throughput_override" proto_init_update "$iface" 1 proto_send_update "$config" @@ -34,7 +43,7 @@ proto_batadv_hardif_teardown() { json_get_vars master - batctl -m "$master" interface -M del "$iface" || true + batctl meshif "$master" interface -M del "$iface" || true } add_protocol batadv_hardif