mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 15:32:22 +08:00
4b7a83da16
* Introduce bittorrent related protocol sniffers including, sniffers of 1. BitTorrent Protocol (TCP) 2. uTorrent Transport Protocol (UDP) Signed-off-by: iosmanthus <myosmanthustree@gmail.com> Co-authored-by: 世界 <i@sekai.icu>
11 lines
206 B
Go
11 lines
206 B
Go
package constant
|
|
|
|
const (
|
|
ProtocolTLS = "tls"
|
|
ProtocolHTTP = "http"
|
|
ProtocolQUIC = "quic"
|
|
ProtocolDNS = "dns"
|
|
ProtocolSTUN = "stun"
|
|
ProtocolBitTorrent = "bittorrent"
|
|
)
|