mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-19 15:01:35 +00:00
9 lines
125 B
Go
9 lines
125 B
Go
![]() |
package protocol
|
||
|
|
||
|
type TransferType int
|
||
|
|
||
|
const (
|
||
|
TransferTypeStream TransferType = 0
|
||
|
TransferTypePacket TransferType = 1
|
||
|
)
|