comgt: directip: add sourcefilter option support

This make source based IPv6 routing option available for directip

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/15508
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
Chen Minqiang 2024-05-15 22:51:55 +08:00 committed by Hauke Mehrtens
parent a97b7af33e
commit 8a5db2ff3c

View File

@ -15,6 +15,7 @@ proto_directip_init_config() {
proto_config_add_string "auth"
proto_config_add_string "username"
proto_config_add_string "password"
proto_config_add_boolean sourcefilter
proto_config_add_defaults
}
@ -22,8 +23,8 @@ proto_directip_setup() {
local interface="$1"
local chat devpath devname
local device apn pincode ifname auth username password $PROTO_DEFAULT_OPTIONS
json_get_vars device apn pincode auth username password $PROTO_DEFAULT_OPTIONS
local device apn pincode ifname auth username password sourcefilter $PROTO_DEFAULT_OPTIONS
json_get_vars device apn pincode auth username password sourcefilter $PROTO_DEFAULT_OPTIONS
[ -n "$ctl_device" ] && device=$ctl_device
@ -89,6 +90,7 @@ proto_directip_setup() {
json_add_string ifname "@$interface"
json_add_string proto "dhcpv6"
json_add_string extendprefix 1
[ "$sourcefilter" = "0" ] && json_add_boolean sourcefilter "0"
proto_add_dynamic_defaults
ubus call network add_dynamic "$(json_dump)"