mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-20 06:25:55 +00:00
17 lines
265 B
Go
17 lines
265 B
Go
|
|
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
|
||
|
|
)
|