1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-12 08:14:24 -04:00
v2fly/proxy/vmess/encoding/const.go

10 lines
135 B
Go
Raw Normal View History

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