mirror of https://github.com/dnomd343/ProxyC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import json
|
|
from Basis.Functions import hostFormat
|
|
|
|
|
|
def load(proxyInfo: dict, socksInfo: dict, configFile: str) -> tuple[list, str, dict]:
|
|
hysteriaConfig = {**{
|
|
'server': '%s:%i' % (hostFormat(proxyInfo['server'], v6Bracket = True), proxyInfo['port']),
|
|
'protocol': proxyInfo['protocol'],
|
|
'up_mbps': proxyInfo['up'],
|
|
'down_mbps': proxyInfo['down'],
|
|
'retry_interval': 2,
|
|
'retry': 3,
|
|
'socks5': {
|
|
'listen': '%s:%i' % (hostFormat(socksInfo['addr'], v6Bracket = True), socksInfo['port'])
|
|
}
|
|
}, **({} if proxyInfo['obfs'] is None else {
|
|
'obfs': proxyInfo['obfs']
|
|
}), **({} if proxyInfo['passwd'] is None else {
|
|
'auth_str': proxyInfo['passwd']
|
|
}), **({} if proxyInfo['sni'] == '' else {
|
|
'server_name': proxyInfo['sni']
|
|
}), **({} if proxyInfo['alpn'] is None else {
|
|
'alpn': proxyInfo['alpn']
|
|
}), **({} if proxyInfo['verify'] else {
|
|
'insecure': True
|
|
})}
|
|
return ['hysteria', '-c', configFile, 'client'], json.dumps(hysteriaConfig), {'LOGGING_LEVEL': 'trace'}
|
|
|