1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-10 06:16:53 -05:00
v2fly/proxy/vmess/encoding/encoding.go

20 lines
562 B
Go
Raw Normal View History

2017-04-08 19:43:25 -04:00
package encoding
2018-02-23 17:42:01 -05:00
import (
2021-02-16 15:31:50 -05:00
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/common/protocol"
2018-02-23 17:42:01 -05:00
)
2021-02-16 15:31:50 -05:00
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
2018-02-23 17:42:01 -05:00
const (
Version = byte(1)
)
var addrParser = protocol.NewAddressParser(
2018-02-23 18:57:54 -05:00
protocol.AddressFamilyByte(byte(protocol.AddressTypeIPv4), net.AddressFamilyIPv4),
protocol.AddressFamilyByte(byte(protocol.AddressTypeDomain), net.AddressFamilyDomain),
protocol.AddressFamilyByte(byte(protocol.AddressTypeIPv6), net.AddressFamilyIPv6),
2018-02-23 17:42:01 -05:00
protocol.PortThenAddress(),
)