mirror of https://github.com/v2ray/v2ray-core
9 lines
125 B
Go
9 lines
125 B
Go
![]() |
package protocol
|
||
|
|
||
|
type TransferType int
|
||
|
|
||
|
const (
|
||
|
TransferTypeStream TransferType = 0
|
||
|
TransferTypePacket TransferType = 1
|
||
|
)
|