diff options
author | Florian Eckert <fe@dev.tdt.de> | 2022-10-05 16:27:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 16:27:46 +0200 |
commit | fc60a6547b03870d21023491c4ed79326db95fab (patch) | |
tree | fe72ae849f6353c43817f34957856caf8742d922 /net | |
parent | 18d415b02b5ca894a01bf204144909d9156ff586 (diff) | |
parent | 675ecfba89afaddebbc0b0d7bbc084ea312fc927 (diff) |
Merge pull request #19520 from dyarkovoy/master
mwan3: support offload routing modifier
Diffstat (limited to 'net')
-rw-r--r-- | net/mwan3/Makefile | 2 | ||||
-rw-r--r-- | net/mwan3/files/lib/mwan3/common.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/mwan3/Makefile b/net/mwan3/Makefile index ffffc7fa4..4e5c6e48d 100644 --- a/net/mwan3/Makefile +++ b/net/mwan3/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mwan3 -PKG_VERSION:=2.11.1 +PKG_VERSION:=2.11.2 PKG_RELEASE:=3 PKG_MAINTAINER:=Florian Eckert <fe@dev.tdt.de>, \ Aaron Goodman <aaronjg@alumni.stanford.edu> diff --git a/net/mwan3/files/lib/mwan3/common.sh b/net/mwan3/files/lib/mwan3/common.sh index fb951d5a6..29ace6050 100644 --- a/net/mwan3/files/lib/mwan3/common.sh +++ b/net/mwan3/files/lib/mwan3/common.sh @@ -140,7 +140,7 @@ mwan3_init() # remove "linkdown", expiry and source based routing modifiers from route lines config_get_bool source_routing globals source_routing 0 [ $source_routing -eq 1 ] && unset source_routing - MWAN3_ROUTE_LINE_EXP="s/linkdown //; s/expires [0-9]\+sec//; s/error [0-9]\+//; ${source_routing:+s/default\(.*\) from [^ ]*/default\1/;} p" + MWAN3_ROUTE_LINE_EXP="s/offload//; s/linkdown //; s/expires [0-9]\+sec//; s/error [0-9]\+//; ${source_routing:+s/default\(.*\) from [^ ]*/default\1/;} p" # mark mask constants bitcnt=$(mwan3_count_one_bits MMX_MASK) |