mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-04 06:54:27 -05:00 
			
		
		
		
	mbim: add delegate option support
Ipv6 delegate option is not respected by proto mbim 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
							
								
									01d257e95f
								
							
						
					
					
						commit
						72d9e4fc31
					
				@ -1,7 +1,7 @@
 | 
				
			|||||||
include $(TOPDIR)/rules.mk
 | 
					include $(TOPDIR)/rules.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PKG_NAME:=umbim
 | 
					PKG_NAME:=umbim
 | 
				
			||||||
PKG_RELEASE:=24
 | 
					PKG_RELEASE:=25
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PKG_SOURCE_PROTO:=git
 | 
					PKG_SOURCE_PROTO:=git
 | 
				
			||||||
PKG_SOURCE_URL=$(PROJECT_GIT)/project/umbim.git
 | 
					PKG_SOURCE_URL=$(PROJECT_GIT)/project/umbim.git
 | 
				
			||||||
 | 
				
			|||||||
@ -23,6 +23,7 @@ proto_mbim_init_config() {
 | 
				
			|||||||
	proto_config_add_string dhcp
 | 
						proto_config_add_string dhcp
 | 
				
			||||||
	proto_config_add_string dhcpv6
 | 
						proto_config_add_string dhcpv6
 | 
				
			||||||
	proto_config_add_boolean sourcefilter
 | 
						proto_config_add_boolean sourcefilter
 | 
				
			||||||
 | 
						proto_config_add_boolean delegate
 | 
				
			||||||
	proto_config_add_string pdptype
 | 
						proto_config_add_string pdptype
 | 
				
			||||||
	proto_config_add_int mtu
 | 
						proto_config_add_int mtu
 | 
				
			||||||
	proto_config_add_defaults
 | 
						proto_config_add_defaults
 | 
				
			||||||
@ -48,7 +49,7 @@ _proto_mbim_setup() {
 | 
				
			|||||||
	local device apn pincode delay auth username password allow_roaming allow_partner
 | 
						local device apn pincode delay auth username password allow_roaming allow_partner
 | 
				
			||||||
	local dhcp dhcpv6 pdptype ip4table ip6table mtu $PROTO_DEFAULT_OPTIONS
 | 
						local dhcp dhcpv6 pdptype ip4table ip6table mtu $PROTO_DEFAULT_OPTIONS
 | 
				
			||||||
	json_get_vars device apn pincode delay auth username password allow_roaming allow_partner
 | 
						json_get_vars device apn pincode delay auth username password allow_roaming allow_partner
 | 
				
			||||||
	json_get_vars dhcp dhcpv6 sourcefilter pdptype ip4table ip6table mtu $PROTO_DEFAULT_OPTIONS
 | 
						json_get_vars dhcp dhcpv6 sourcefilter delegate pdptype ip4table ip6table mtu $PROTO_DEFAULT_OPTIONS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	[ ! -e /proc/sys/net/ipv6 ] && ipv6=0 || json_get_var ipv6 ipv6
 | 
						[ ! -e /proc/sys/net/ipv6 ] && ipv6=0 || json_get_var ipv6 ipv6
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -264,6 +265,7 @@ _proto_mbim_setup() {
 | 
				
			|||||||
			echo "mbim[$$]" "Starting DHCPv6 on $ifname"
 | 
								echo "mbim[$$]" "Starting DHCPv6 on $ifname"
 | 
				
			||||||
			json_add_string proto "dhcpv6"
 | 
								json_add_string proto "dhcpv6"
 | 
				
			||||||
			json_add_string extendprefix 1
 | 
								json_add_string extendprefix 1
 | 
				
			||||||
 | 
								[ "$delegate" = "0" ] && json_add_boolean delegate "0"
 | 
				
			||||||
			[ "$sourcefilter" = "0" ] && json_add_boolean sourcefilter "0"
 | 
								[ "$sourcefilter" = "0" ] && json_add_boolean sourcefilter "0"
 | 
				
			||||||
		fi
 | 
							fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user