From 6ce3805719d5910eba706eb41cca058109f07e51 Mon Sep 17 00:00:00 2001 From: H1JK Date: Sun, 2 Oct 2022 21:10:29 +0800 Subject: [PATCH] feat: Converter support packet encodings for VMess --- common/convert/converter.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common/convert/converter.go b/common/convert/converter.go index 9876e51f..07bff155 100644 --- a/common/convert/converter.go +++ b/common/convert/converter.go @@ -144,6 +144,14 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) { if encryption := query.Get("encryption"); encryption != "" { vmess["cipher"] = encryption } + if packetEncoding := query.Get("packetEncoding"); packetEncoding != "" { + switch packetEncoding { + case "packet": + vmess["packet-addr"] = true + case "xudp": + vmess["xudp"] = true + } + } proxies = append(proxies, vmess) continue }