Add v2ray HTTP transport

This commit is contained in:
世界 2022-08-22 22:19:25 +08:00
parent d4b7e221f0
commit 4005452772
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
14 changed files with 452 additions and 68 deletions

5
constant/err.go Normal file
View file

@ -0,0 +1,5 @@
package constant
import E "github.com/sagernet/sing/common/exceptions"
var ErrTLSRequired = E.New("TLS required")

View file

@ -1,7 +1,8 @@
package constant
const (
V2RayTransportTypeGRPC = "grpc"
V2RayTransportTypeHTTP = "http"
V2RayTransportTypeWebsocket = "ws"
V2RayTransportTypeQUIC = "quic"
V2RayTransportTypeGRPC = "grpc"
)