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