Browse Source

modified: Encoder/VLESS.py

dev
shevonkuan 2 years ago
parent
commit
002728b47f
  1. 4
      Encoder/VLESS.py

4
Encoder/VLESS.py

@ -16,7 +16,7 @@ def vless(info: dict, name: str) -> str:
# stream settings # stream settings
streamInfo = info['stream']['type'] streamInfo = info['stream']['type']
type = streamInfo['type'] stremType = streamInfo['type']
flow = streamInfo.get('flow', None) flow = streamInfo.get('flow', None)
headerType = streamInfo.get('obfs', 'none') headerType = streamInfo.get('obfs', 'none')
host = streamInfo.get('host', None) host = streamInfo.get('host', None)
@ -25,7 +25,7 @@ def vless(info: dict, name: str) -> str:
alpn = streamInfo.get('alpn', None) alpn = streamInfo.get('alpn', None)
sni = streamInfo.get('sni', None) sni = streamInfo.get('sni', None)
link += 'type=' + type + '&' # add <type> link += 'type=' + stremType + '&' # add <type>
link += 'flow=' + flow + '&' if flow else '' # add <flow> link += 'flow=' + flow + '&' if flow else '' # add <flow>
link += 'headerType=' + headerType + '&' # add <headerType> link += 'headerType=' + headerType + '&' # add <headerType>
link += 'security=' + security + '&' if security else '' # add <security> link += 'security=' + security + '&' if security else '' # add <security>

Loading…
Cancel
Save