sing-box/include/quic_stub.go

31 lines
1017 B
Go
Raw Normal View History

2022-09-14 04:46:02 +00:00
//go:build !with_quic
package include
import (
"context"
2022-09-26 11:37:06 +00:00
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/common/tls"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/option"
"github.com/sagernet/sing-box/transport/v2ray"
2022-09-14 04:46:02 +00:00
"github.com/sagernet/sing-dns"
2022-09-26 11:37:06 +00:00
M "github.com/sagernet/sing/common/metadata"
2022-09-14 04:46:02 +00:00
N "github.com/sagernet/sing/common/network"
)
func init() {
dns.RegisterTransport([]string{"quic", "h3"}, func(options dns.TransportOptions) (dns.Transport, error) {
2022-09-26 11:37:06 +00:00
return nil, C.ErrQUICNotIncluded
2022-09-14 04:46:02 +00:00
})
2022-09-26 11:37:06 +00:00
v2ray.RegisterQUICConstructor(
func(ctx context.Context, options option.V2RayQUICOptions, tlsConfig tls.ServerConfig, handler adapter.V2RayServerTransportHandler) (adapter.V2RayServerTransport, error) {
2022-09-26 11:37:06 +00:00
return nil, C.ErrQUICNotIncluded
},
func(ctx context.Context, dialer N.Dialer, serverAddr M.Socksaddr, options option.V2RayQUICOptions, tlsConfig tls.Config) (adapter.V2RayClientTransport, error) {
return nil, C.ErrQUICNotIncluded
},
)
2022-09-14 04:46:02 +00:00
}