mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 09:26:21 -05:00
9 lines
125 B
Go
9 lines
125 B
Go
package protocol
|
|
|
|
type TransferType int
|
|
|
|
const (
|
|
TransferTypeStream TransferType = 0
|
|
TransferTypePacket TransferType = 1
|
|
)
|