mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 09:04:02 +03:00
FILE / ScuroNeko/mtg
essentials/addresses.go
Исходный файл и его история в репозитории.
43 lines
793 B
Go
43 lines
793 B
Go
package essentials
|
|
|
|
// TelegramCoreAddresses are publicly known addresses of Telegram core network.
|
|
var TelegramCoreAddresses = map[int][]string{
|
|
1: {
|
|
"149.154.175.50:443",
|
|
"[2001:b28:f23d:f001::a]:443",
|
|
},
|
|
2: {
|
|
"149.154.167.51:443",
|
|
"95.161.76.100:443",
|
|
"[2001:67c:04e8:f002::a]:443",
|
|
},
|
|
3: {
|
|
"149.154.175.100:443",
|
|
"[2001:b28:f23d:f003::a]:443",
|
|
},
|
|
4: {
|
|
"149.154.167.91:443",
|
|
"[2001:67c:04e8:f004::a]:443",
|
|
},
|
|
5: {
|
|
"149.154.171.5:443",
|
|
"[2001:b28:f23f:f005::a]:443",
|
|
},
|
|
203: {
|
|
"91.105.192.100:443",
|
|
"[2a0a:f280:0203:a:5000::100]:443",
|
|
},
|
|
10001: {
|
|
"149.154.175.10:443",
|
|
"[2001:b28:f23d:f001::e]:443",
|
|
},
|
|
10002: {
|
|
"149.154.167.40:443",
|
|
"[2001:67c:4e8:f002::e]:443",
|
|
},
|
|
10003: {
|
|
"149.154.175.117:443",
|
|
"[2001:b28:f23d:f003::e]:443",
|
|
},
|
|
}
|