clash/constant/sniffer.go

30 lines
403 B
Go
Raw Normal View History

package constant
type Sniffer interface {
SupportNetwork() NetWork
SniffTCP(bytes []byte) (string, error)
Protocol() string
}
const (
TLS SnifferType = iota
2022-05-01 21:34:20 +00:00
HTTP SnifferType
)
var (
2022-05-01 21:10:18 +00:00
SnifferList = []SnifferType{TLS, HTTP}
)
type SnifferType int
func (rt SnifferType) String() string {
switch rt {
case TLS:
return "TLS"
2022-05-01 21:10:18 +00:00
case HTTP:
return "HTTP"
default:
return "Unknown"
}
}