From c3e1a51dc107eec78c9e495a1d9a3f01848e4a9a Mon Sep 17 00:00:00 2001 From: William Yang Date: Sat, 6 Jan 2024 17:51:31 +0100 Subject: [PATCH] fix: patch msquic 2.2.3 for global lb config --- get-msquic.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/get-msquic.sh b/get-msquic.sh index a6327bb6..e0b04168 100755 --- a/get-msquic.sh +++ b/get-msquic.sh @@ -21,9 +21,11 @@ do_patch() patch_2_2_3() { local patch_1="https://github.com/microsoft/msquic/commit/73a11d7bdc724432964a2d4bdc4211ed29823380.patch" + local patch_2="https://github.com/microsoft/msquic/commit/d7a3658cea2bee4a1873623c772dc193165433a6.patch" mkdir -p "$patch_dir" echo "Patching Msquic 2.2.3" do_patch "$patch_1" + do_patch "$patch_2" }