sing-box/constant/v2ray.go

9 lines
178 B
Go
Raw Permalink Normal View History

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