payload.go 125 B

12345678
  1. package protocol
  2. type TransferType int
  3. const (
  4. TransferTypeStream TransferType = 0
  5. TransferTypePacket TransferType = 1
  6. )