sing-box/include/quic.go

33 lines
961 B
Go
Raw Normal View History

2022-09-14 04:46:02 +00:00
//go:build with_quic
package include
2022-09-26 11:37:06 +00:00
import (
2024-11-01 16:39:02 +00:00
"github.com/sagernet/sing-box/adapter/inbound"
"github.com/sagernet/sing-box/adapter/outbound"
2024-12-02 15:17:01 +00:00
"github.com/sagernet/sing-box/dns"
"github.com/sagernet/sing-box/dns/transport/quic"
2024-11-01 16:39:02 +00:00
"github.com/sagernet/sing-box/protocol/hysteria"
"github.com/sagernet/sing-box/protocol/hysteria2"
_ "github.com/sagernet/sing-box/protocol/naive/quic"
"github.com/sagernet/sing-box/protocol/tuic"
2022-09-26 11:37:06 +00:00
_ "github.com/sagernet/sing-box/transport/v2rayquic"
)
2024-11-01 16:39:02 +00:00
func registerQUICInbounds(registry *inbound.Registry) {
hysteria.RegisterInbound(registry)
tuic.RegisterInbound(registry)
hysteria2.RegisterInbound(registry)
}
func registerQUICOutbounds(registry *outbound.Registry) {
hysteria.RegisterOutbound(registry)
tuic.RegisterOutbound(registry)
hysteria2.RegisterOutbound(registry)
}
2024-12-02 15:17:01 +00:00
func registerQUICTransports(registry *dns.TransportRegistry) {
quic.RegisterTransport(registry)
quic.RegisterHTTP3Transport(registry)
}