Files
v2ray_simple/proxy/constant.go
hahahrfool 009162cf40 first
2022-03-09 21:27:13 +08:00

17 lines
288 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package proxy
// CMD types, for vless and vmess
const (
_ byte = iota
CmdTCP
CmdUDP
CmdMux
)
// Atyp, for vless and vmess; 注意与 trojan和socks5的区别trojan和socks5的相同含义的值是134
const (
AtypIP4 byte = 1
AtypDomain byte = 2
AtypIP6 byte = 3
)