diff options
| author | Chen Minqiang | 2024-05-15 14:46:08 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-09-22 21:43:08 +0000 |
| commit | 0371a4c8146d4f8239e03813e42f78d553178f8d (patch) | |
| tree | dfef666adb9ec419926c9342a77e73e09f29bdd4 | |
| parent | 72d9e4fc31a1e6cc8f00c1b8d7366bf2efc13f9e (diff) | |
| download | openwrt-0371a4c8146d4f8239e03813e42f78d553178f8d.tar.gz | |
ncm: add delegate option support
Ipv6 delegate option is not respected by proto ncm
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>
| -rw-r--r-- | package/network/utils/comgt/files/ncm.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/network/utils/comgt/files/ncm.sh b/package/network/utils/comgt/files/ncm.sh index 4c829fa930..e9412b28fe 100644 --- a/package/network/utils/comgt/files/ncm.sh +++ b/package/network/utils/comgt/files/ncm.sh @@ -20,6 +20,7 @@ proto_ncm_init_config() { proto_config_add_string mode proto_config_add_string pdptype proto_config_add_boolean sourcefilter + proto_config_add_boolean delegate proto_config_add_int profile proto_config_add_defaults } @@ -30,7 +31,7 @@ proto_ncm_setup() { local manufacturer initialize setmode connect finalize devname devpath ifpath local device ifname apn auth username password pincode delay mode pdptype profile $PROTO_DEFAULT_OPTIONS - json_get_vars device ifname apn auth username password pincode delay mode pdptype sourcefilter profile $PROTO_DEFAULT_OPTIONS + json_get_vars device ifname apn auth username password pincode delay mode pdptype sourcefilter delegate profile $PROTO_DEFAULT_OPTIONS local context_type @@ -203,6 +204,7 @@ proto_ncm_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 [ -n "$zone" ] && { |