21 lines
497 B
Python
21 lines
497 B
Python
PORT = 5396
|
|
|
|
USERS = {
|
|
# 32位16进制字符串
|
|
"tg": "6b96a90543e55d4ea59e7e0ae9420d4931313661613832363239613931383530303864343866633361333139643363342e636f6d",
|
|
}
|
|
|
|
MODES = {
|
|
# Classic mode, easy to detect
|
|
"classic": False,
|
|
|
|
# Makes the proxy harder to detect
|
|
# Can be incompatible with very old clients
|
|
"secure": False,
|
|
|
|
# Makes the proxy even more hard to detect
|
|
# Can be incompatible with old clients
|
|
"tls": True
|
|
}
|
|
TLS_DOMAIN = "endfield.gryphline.com"
|