From a8d24607a5ebae5f0a78aa066b35d0b7e66163ff Mon Sep 17 00:00:00 2001 From: bol-van Date: Sat, 15 Aug 2026 16:54:32 +0300 Subject: [PATCH] blockcheck2: --wf-dup-check not needed anymore --- blockcheck2.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blockcheck2.sh b/blockcheck2.sh index f035d4f..6063e3a 100755 --- a/blockcheck2.sh +++ b/blockcheck2.sh @@ -954,10 +954,10 @@ pktws_start() "$DVTWS2" --port=$IPFW_DIVERT_PORT --lua-init=@"$ZAPRET_BASE/lua/zapret-lib.lua" --lua-init=@"$ZAPRET_BASE/lua/zapret-antidpi.lua" "$@" >/dev/null & ;; CYGWIN) - # allow multiple PKTWS instances with the same wf filter but different ipset # some methods require empty acks + # use raw filter to filter target ip addresses in-kernel to allow multiple blockchecks running at the same time # use guard timer to kill unmanaged pktws instances - "$WINWS2" --wf-dup-check=0 --wf-tcp-empty=1 $WF --wf-raw-filter="$WFRAWF" \ + "$WINWS2" --wf-tcp-empty=1 $WF --wf-raw-filter="$WFRAWF" \ --lua-init="timer_set('exit_guard',function(name,data) io.stderr:write('exit_guard\n'); os.exit(3000); end,20000,true)" \ --lua-init=@"$ZAPRET_BASE/lua/zapret-lib.lua" --lua-init=@"$ZAPRET_BASE/lua/zapret-antidpi.lua" "$@" >/dev/null & ;;