update 2022-10-01 21:42:41
This commit is contained in:
parent
5d01230792
commit
569e559018
|
@ -5,12 +5,12 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=dnsproxy
|
||||
PKG_VERSION:=0.45.1
|
||||
PKG_VERSION:=0.45.2
|
||||
PKG_RELEASE:=$(AUTORELEASE)
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/AdguardTeam/dnsproxy/tar.gz/v$(PKG_VERSION)?
|
||||
PKG_HASH:=30b04bcc3b2d50b50e0bccddb9f4f2f0d152b5ada44ef1e4905e8565ac844a8e
|
||||
PKG_HASH:=1c9c20f86621adebee6b61ee4bfba4b05b5e42a9ef66f01425d4e45987ff8d35
|
||||
|
||||
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
|
|
|
@ -9,10 +9,10 @@ include $(TOPDIR)/rules.mk
|
|||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
||||
PKG_NAME:=natflow
|
||||
PKG_VERSION:=20221004
|
||||
PKG_VERSION:=20221008
|
||||
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/ptpt52/natflow/tar.gz/$(PKG_VERSION)?
|
||||
PKG_HASH:=117d2eafd2b94ee35f0a3e15aaa69fdc545dd1f107755965def217e40ab3b18c
|
||||
PKG_HASH:=c3911f8078ca138456751d53d1fd661228ab4d25a810b8808bdd8059912250b2
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
|
||||
PKG_MAINTAINER:=Chen Minqiang <ptpt52@gmail.com>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
START=95
|
||||
|
||||
disable_gro() {
|
||||
which ethtool || return 0
|
||||
which ethtool &>/dev/null || return 0
|
||||
for eth in $(ifconfig | grep "^eth\|^dsa" | awk '{print $1}' | sort | uniq); do
|
||||
ethtool -K "$eth" gro off
|
||||
logger -t natfflow "disable gro for <$eth>"
|
||||
|
@ -21,7 +21,9 @@ start() {
|
|||
|
||||
echo debug=$debug >/dev/natflow_ctl
|
||||
echo disabled=$((!enabled)) >/dev/natflow_ctl
|
||||
echo hwnat=$hwnat >/dev/natflow_ctl
|
||||
cat /dev/natflow_ctl | grep -q hwnat= && {
|
||||
echo hwnat=$hwnat >/dev/natflow_ctl
|
||||
}
|
||||
echo delay_pkts=$delay_pkts >/dev/natflow_ctl
|
||||
echo ifname_clear >/dev/natflow_ctl
|
||||
for ifn in ${ifname_filter}; do
|
||||
|
|
Loading…
Reference in New Issue