2022-08-22 10:53:47 +00:00
|
|
|
//go:build !with_grpc
|
|
|
|
|
|
|
|
package v2ray
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
2022-08-22 12:20:56 +00:00
|
|
|
"github.com/sagernet/sing-box/option"
|
2022-08-27 13:05:15 +00:00
|
|
|
"github.com/sagernet/sing-box/transport/v2raygrpclite"
|
2022-08-22 10:53:47 +00:00
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
)
|
|
|
|
|
2022-08-27 13:05:15 +00:00
|
|
|
func NewGRPCServer(ctx context.Context, options option.V2RayGRPCOptions, tlsConfig *tls.Config, handler N.TCPConnectionHandler, errorHandler E.Handler) (adapter.V2RayServerTransport, error) {
|
|
|
|
return v2raygrpclite.NewServer(ctx, options, tlsConfig, handler, errorHandler), nil
|
2022-08-22 10:53:47 +00:00
|
|
|
}
|
|
|
|
|
2022-08-22 12:20:56 +00:00
|
|
|
func NewGRPCClient(ctx context.Context, dialer N.Dialer, serverAddr M.Socksaddr, options option.V2RayGRPCOptions, tlsConfig *tls.Config) (adapter.V2RayClientTransport, error) {
|
2022-08-27 13:05:15 +00:00
|
|
|
return v2raygrpclite.NewClient(ctx, dialer, serverAddr, options, tlsConfig), nil
|
2022-08-22 10:53:47 +00:00
|
|
|
}
|