1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-02-21 16:20:44 +00:00

17 lines
265 B
Go
Raw Normal View History

2020-11-25 19:01:53 +08:00
package protocol
type TransferType byte
const (
TransferTypeStream TransferType = 0
TransferTypePacket TransferType = 1
)
type AddressType byte
const (
AddressTypeIPv4 AddressType = 1
AddressTypeDomain AddressType = 2
AddressTypeIPv6 AddressType = 3
)