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