mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-05 11:24:00 +00:00
31 lines
403 B
Go
31 lines
403 B
Go
package sniffer
|
|
|
|
import "github.com/Dreamacro/clash/constant"
|
|
|
|
type Sniffer interface {
|
|
SupportNetwork() constant.NetWork
|
|
SniffTCP(bytes []byte) (string, error)
|
|
Protocol() string
|
|
}
|
|
|
|
const (
|
|
TLS Type = iota
|
|
HTTP
|
|
)
|
|
|
|
var (
|
|
List = []Type{TLS, HTTP}
|
|
)
|
|
|
|
type Type int
|
|
|
|
func (rt Type) String() string {
|
|
switch rt {
|
|
case TLS:
|
|
return "TLS"
|
|
case HTTP:
|
|
return "HTTP"
|
|
default:
|
|
return "Unknown"
|
|
}
|
|
}
|