Przeglądaj źródła

Chore: update default fake-ip-filter

kr328 4 lat temu
rodzic
commit
7e46d75159
1 zmienionych plików z 5 dodań i 2 usunięć
  1. 5 2
      core/src/main/golang/native/config/defaults.go

+ 5 - 2
core/src/main/golang/native/config/defaults.go

@@ -8,17 +8,20 @@ var (
 		"1.1.1.1",
 		"1.1.1.1",
 	}
 	}
 	defaultFakeIPFilter = []string{
 	defaultFakeIPFilter = []string{
-		// stun services
+		// Stun Services
 		"+.stun.*.*",
 		"+.stun.*.*",
 		"+.stun.*.*.*",
 		"+.stun.*.*.*",
 		"+.stun.*.*.*.*",
 		"+.stun.*.*.*.*",
+		"+.stun.*.*.*.*.*",
 
 
 		// Google Voices
 		// Google Voices
 		"lens.l.google.com",
 		"lens.l.google.com",
-		"stun.l.google.com",
 
 
 		// Nintendo Switch
 		// Nintendo Switch
 		"*.n.n.srv.nintendo.net",
 		"*.n.n.srv.nintendo.net",
+
+		// Bilibili CDN
+		"*.mcdn.bilivideo.cn",
 	}
 	}
 	defaultFakeIPRange = "28.0.0.0/8"
 	defaultFakeIPRange = "28.0.0.0/8"
 )
 )