v2ray-core/transport/errors.go

10 lines
103 B
Go

package transport
import (
"errors"
)
var (
CorruptedPacket = errors.New("Packet is corrupted.")
)