comgt: directip: add delegate option support
Ipv6 delegate option is not respected by proto directip this add support for it. 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:
parent
8a5db2ff3c
commit
105a5790b7
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=comgt
|
||||
PKG_VERSION:=0.32
|
||||
PKG_RELEASE:=35
|
||||
PKG_RELEASE:=36
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tgz
|
||||
PKG_SOURCE_URL:=@SF/comgt
|
||||
|
|
|
@ -16,6 +16,7 @@ proto_directip_init_config() {
|
|||
proto_config_add_string "username"
|
||||
proto_config_add_string "password"
|
||||
proto_config_add_boolean sourcefilter
|
||||
proto_config_add_boolean delegate
|
||||
proto_config_add_defaults
|
||||
}
|
||||
|
||||
|
@ -23,8 +24,8 @@ proto_directip_setup() {
|
|||
local interface="$1"
|
||||
local chat devpath devname
|
||||
|
||||
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
|
||||
local device apn pincode ifname auth username password sourcefilter delegate $PROTO_DEFAULT_OPTIONS
|
||||
json_get_vars device apn pincode auth username password sourcefilter delegate $PROTO_DEFAULT_OPTIONS
|
||||
|
||||
[ -n "$ctl_device" ] && device=$ctl_device
|
||||
|
||||
|
@ -90,6 +91,7 @@ proto_directip_setup() {
|
|||
json_add_string ifname "@$interface"
|
||||
json_add_string proto "dhcpv6"
|
||||
json_add_string extendprefix 1
|
||||
[ "$delegate" = "0" ] && json_add_boolean delegate "0"
|
||||
[ "$sourcefilter" = "0" ] && json_add_boolean sourcefilter "0"
|
||||
proto_add_dynamic_defaults
|
||||
ubus call network add_dynamic "$(json_dump)"
|
||||
|
|
Loading…
Reference in New Issue