Chore: update default fake-ip-filter

This commit is contained in:
kr328 2021-11-21 13:54:31 +08:00
parent 87f96b9ec7
commit 7e46d75159

View File

@ -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"
) )