From 7e46d75159d606f1cc654b4dbf93a01ba5134db7 Mon Sep 17 00:00:00 2001 From: kr328 Date: Sun, 21 Nov 2021 13:54:31 +0800 Subject: [PATCH] Chore: update default fake-ip-filter --- core/src/main/golang/native/config/defaults.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core/src/main/golang/native/config/defaults.go b/core/src/main/golang/native/config/defaults.go index 371970f8..57931310 100644 --- a/core/src/main/golang/native/config/defaults.go +++ b/core/src/main/golang/native/config/defaults.go @@ -8,17 +8,20 @@ var ( "1.1.1.1", } defaultFakeIPFilter = []string{ - // stun services + // Stun Services "+.stun.*.*", "+.stun.*.*.*", "+.stun.*.*.*.*", + "+.stun.*.*.*.*.*", // Google Voices "lens.l.google.com", - "stun.l.google.com", // Nintendo Switch "*.n.n.srv.nintendo.net", + + // Bilibili CDN + "*.mcdn.bilivideo.cn", } defaultFakeIPRange = "28.0.0.0/8" )