v2ray-core/proxy/vmess/encoding/const.go

10 lines
135 B
Go
Raw Normal View History

2016-07-23 11:17:51 +00:00
package encoding
2016-02-25 20:50:38 +00:00
const (
Version = byte(1)
AddrTypeIPv4 = byte(0x01)
AddrTypeIPv6 = byte(0x03)
AddrTypeDomain = byte(0x02)
)