mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
//go:build with_grpc
|
|
|
|
package v2ray
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
"github.com/sagernet/sing-box/common/tls"
|
|
"github.com/sagernet/sing-box/option"
|
|
"github.com/sagernet/sing-box/transport/v2raygrpc"
|
|
"github.com/sagernet/sing-box/transport/v2raygrpclite"
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
func NewGRPCServer(ctx context.Context, options option.V2RayGRPCOptions, tlsConfig tls.ServerConfig, handler adapter.V2RayServerTransportHandler) (adapter.V2RayServerTransport, error) {
|
|
if options.ForceLite {
|
|
return v2raygrpclite.NewServer(ctx, options, tlsConfig, handler)
|
|
}
|
|
return v2raygrpc.NewServer(ctx, options, tlsConfig, handler)
|
|
}
|
|
|
|
func NewGRPCClient(ctx context.Context, dialer N.Dialer, serverAddr M.Socksaddr, options option.V2RayGRPCOptions, tlsConfig tls.Config) (adapter.V2RayClientTransport, error) {
|
|
if options.ForceLite {
|
|
return v2raygrpclite.NewClient(ctx, dialer, serverAddr, options, tlsConfig), nil
|
|
}
|
|
return v2raygrpc.NewClient(ctx, dialer, serverAddr, options, tlsConfig)
|
|
}
|