ipv6: remove now unneeded source-dest-routing workarounds
[openwrt.git] / package / network / ipv6 / 6in4 / files / 6in4.sh
index 0289df3..af2ddca 100755 (executable)
@@ -27,8 +27,8 @@ proto_6in4_setup() {
        local iface="$2"
        local link="6in4-$cfg"
 
-       local mtu ttl tos ipaddr peeraddr ip6addr ip6prefix tunnelid username password updatekey sourcerouting
-       json_get_vars mtu ttl tos ipaddr peeraddr ip6addr ip6prefix tunnelid username password updatekey sourcerouting
+       local mtu ttl tos ipaddr peeraddr ip6addr ip6prefix tunnelid username password updatekey
+       json_get_vars mtu ttl tos ipaddr peeraddr ip6addr ip6prefix tunnelid username password updatekey
 
        [ -z "$peeraddr" ] && {
                proto_notify_error "$cfg" "MISSING_ADDRESS"
@@ -48,21 +48,17 @@ proto_6in4_setup() {
 
        proto_init_update "$link" 1
 
-       local source=""
-       [ "$sourcerouting" != "0" ] && source="::/128"
-       proto_add_ipv6_route "::" 0 "" "" "" "$source"
-
        [ -n "$ip6addr" ] && {
                local local6="${ip6addr%%/*}"
                local mask6="${ip6addr##*/}"
                [[ "$local6" = "$mask6" ]] && mask6=
                proto_add_ipv6_address "$local6" "$mask6"
-               [ "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$local6/$mask6"
+               proto_add_ipv6_route "::" 0 "" "" "" "$local6/$mask6"
        }
 
        [ -n "$ip6prefix" ] && {
                proto_add_ipv6_prefix "$ip6prefix"
-               [ "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$ip6prefix"
+               proto_add_ipv6_route "::" 0 "" "" "" "$ip6prefix"
        }
 
        proto_add_tunnel
@@ -146,7 +142,6 @@ proto_6in4_init_config() {
        proto_config_add_int "mtu"
        proto_config_add_int "ttl"
        proto_config_add_string "tos"
-       proto_config_add_boolean "sourcerouting"
 }
 
 [ -n "$INCLUDE_ONLY" ] || {