2022-08-22 13:20:05 +00:00
|
|
|
//go:build with_quic
|
|
|
|
|
|
|
|
package v2ray
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
2022-09-09 10:45:10 +00:00
|
|
|
"github.com/sagernet/sing-box/common/tls"
|
2022-08-22 13:20:05 +00:00
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
"github.com/sagernet/sing-box/transport/v2rayquic"
|
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
)
|
|
|
|
|
2022-09-09 10:45:10 +00:00
|
|
|
func NewQUICServer(ctx context.Context, options option.V2RayQUICOptions, tlsConfig tls.Config, handler N.TCPConnectionHandler, errorHandler E.Handler) (adapter.V2RayServerTransport, error) {
|
|
|
|
return v2rayquic.NewServer(ctx, options, tlsConfig, handler, errorHandler)
|
2022-08-22 13:20:05 +00:00
|
|
|
}
|
|
|
|
|
2022-09-09 10:45:10 +00:00
|
|
|
func NewQUICClient(ctx context.Context, dialer N.Dialer, serverAddr M.Socksaddr, options option.V2RayQUICOptions, tlsConfig tls.Config) (adapter.V2RayClientTransport, error) {
|
|
|
|
return v2rayquic.NewClient(ctx, dialer, serverAddr, options, tlsConfig)
|
2022-08-22 13:20:05 +00:00
|
|
|
}
|