Add domain sniffer

This commit is contained in:
世界
2022-07-06 12:39:44 +08:00
parent 2d9203ee74
commit 86a38a1c7e
15 changed files with 603 additions and 18 deletions

8
constant/protocol.go Normal file
View File

@@ -0,0 +1,8 @@
package constant
const (
ProtocolTLS = "tls"
ProtocolHTTP = "http"
ProtocolQUIC = "quic"
ProtocolDNS = "dns"
)