mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
37 lines
517 B
Go
37 lines
517 B
Go
package sniffer
|
|
|
|
import "github.com/Dreamacro/clash/constant"
|
|
|
|
type Sniffer interface {
|
|
SupportNetwork() constant.NetWork
|
|
// SniffData must not change input bytes
|
|
SniffData(bytes []byte) (string, error)
|
|
Protocol() string
|
|
SupportPort(port uint16) bool
|
|
}
|
|
|
|
const (
|
|
TLS Type = iota
|
|
HTTP
|
|
QUIC
|
|
)
|
|
|
|
var (
|
|
List = []Type{TLS, HTTP, QUIC}
|
|
)
|
|
|
|
type Type int
|
|
|
|
func (rt Type) String() string {
|
|
switch rt {
|
|
case TLS:
|
|
return "TLS"
|
|
case HTTP:
|
|
return "HTTP"
|
|
case QUIC:
|
|
return "QUIC"
|
|
default:
|
|
return "Unknown"
|
|
}
|
|
}
|