mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 14:32:21 +08:00
20 lines
386 B
Go
20 lines
386 B
Go
package constant
|
|
|
|
const (
|
|
ProtocolTLS = "tls"
|
|
ProtocolHTTP = "http"
|
|
ProtocolQUIC = "quic"
|
|
ProtocolDNS = "dns"
|
|
ProtocolSTUN = "stun"
|
|
ProtocolBitTorrent = "bittorrent"
|
|
ProtocolDTLS = "dtls"
|
|
)
|
|
|
|
const (
|
|
ClientChromium = "chromium"
|
|
ClientSafari = "safari"
|
|
ClientFirefox = "firefox"
|
|
ClientQUICGo = "quic-go"
|
|
ClientUnknown = "unknown"
|
|
)
|