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.
59 lines
1.4 KiB
59 lines
1.4 KiB
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import copy
|
|
from Filter import Xray
|
|
from Utils.Common import isHost, isPort
|
|
from Utils.Common import toInt, toStrTidy
|
|
from Utils.Filter import Filter, rulesFilter
|
|
|
|
vlessObject = rulesFilter({
|
|
'server': {
|
|
'type': str,
|
|
'format': toStrTidy,
|
|
'filter': isHost,
|
|
'errMsg': 'Invalid server address'
|
|
},
|
|
'port': {
|
|
'type': int,
|
|
'format': toInt,
|
|
'filter': isPort,
|
|
'errMsg': 'Invalid port number'
|
|
},
|
|
'method': {
|
|
'optional': True,
|
|
'default': 'none',
|
|
'type': str,
|
|
'format': toStrTidy,
|
|
'filter': lambda s: s == 'none',
|
|
'errMsg': 'Unknown VLESS method'
|
|
},
|
|
'id': {
|
|
'type': str,
|
|
'format': toStrTidy,
|
|
'errMsg': 'Invalid VLESS ID'
|
|
},
|
|
'stream': {
|
|
'optional': True,
|
|
'default': {
|
|
'type': 'tcp'
|
|
},
|
|
'multiSub': True,
|
|
'type': {
|
|
'tcp': Xray.tcpObject,
|
|
'kcp': Xray.kcpObject,
|
|
'ws': Xray.wsObject,
|
|
'h2': Xray.h2Object,
|
|
'quic': Xray.quicObject,
|
|
'grpc': Xray.grpcObject,
|
|
},
|
|
'errMsg': 'Invalid VLESS stream'
|
|
}
|
|
})
|
|
|
|
|
|
def vlessFilter(proxyInfo: dict) -> dict:
|
|
proxyInfo = copy.deepcopy(proxyInfo)
|
|
proxyInfo = Filter(proxyInfo, vlessObject) # run filter
|
|
Xray.addSni(proxyInfo) # add SNI option
|
|
return proxyInfo
|
|
|