sing-box/constant/protocol.go

10 lines
141 B
Go
Raw Normal View History

2022-07-06 04:39:44 +00:00
package constant
const (
ProtocolTLS = "tls"
ProtocolHTTP = "http"
ProtocolQUIC = "quic"
ProtocolDNS = "dns"
2022-07-16 04:01:02 +00:00
ProtocolSTUN = "stun"
2022-07-06 04:39:44 +00:00
)