2021-02-17 04:31:50 +08:00
|
|
|
package protocol
|
2017-04-09 01:43:25 +02:00
|
|
|
|
2025-02-16 22:11:27 +08:00
|
|
|
import (
|
|
|
|
|
"errors"
|
|
|
|
|
)
|
|
|
|
|
|
2022-01-02 15:16:23 +00:00
|
|
|
//go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
|
2025-02-16 22:11:27 +08:00
|
|
|
|
|
|
|
|
var ErrProtoNeedMoreData = errors.New("protocol matches, but need more data to complete sniffing")
|