sing-box/constant/v2ray.go

9 lines
178 B
Go
Raw Normal View History

2022-08-22 10:53:47 +00:00
package constant
const (
2022-08-22 14:19:25 +00:00
V2RayTransportTypeHTTP = "http"
2022-08-22 12:20:56 +00:00
V2RayTransportTypeWebsocket = "ws"
2022-08-22 13:20:05 +00:00
V2RayTransportTypeQUIC = "quic"
2022-08-22 14:19:25 +00:00
V2RayTransportTypeGRPC = "grpc"
2022-08-22 10:53:47 +00:00
)