sing-box/constant/protocol.go

10 lines
141 B
Go
Raw Normal View History

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