2017-05-02 22:23:07 +02:00
|
|
|
package protocol
|
|
|
|
|
|
2018-04-04 21:46:36 +02:00
|
|
|
type TransferType byte
|
2017-05-02 22:23:07 +02:00
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
TransferTypeStream TransferType = 0
|
|
|
|
|
TransferTypePacket TransferType = 1
|
|
|
|
|
)
|
2017-10-21 21:59:46 +02:00
|
|
|
|
|
|
|
|
type AddressType byte
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
AddressTypeIPv4 AddressType = 1
|
|
|
|
|
AddressTypeDomain AddressType = 2
|
|
|
|
|
AddressTypeIPv6 AddressType = 3
|
|
|
|
|
)
|