1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-28 13:05:28 -05:00

support packet transfer type in mux

This commit is contained in:
Darien Raymond
2017-05-02 22:23:07 +02:00
parent 96da76c5b0
commit 7a4bab4940
13 changed files with 258 additions and 161 deletions

View File

@@ -0,0 +1,8 @@
package protocol
type TransferType int
const (
TransferTypeStream TransferType = 0
TransferTypePacket TransferType = 1
)