Add domain sniffer

This commit is contained in:
世界
2022-07-06 12:39:44 +08:00
parent 625bc649ee
commit 3e2dddfb16
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"
)