162 lines
4.6 KiB
Go
162 lines
4.6 KiB
Go
package core
|
|
|
|
import (
|
|
"s-ui/core/protocol/hysteria"
|
|
"s-ui/core/protocol/hysteria2"
|
|
|
|
"github.com/sagernet/sing-box/adapter/endpoint"
|
|
"github.com/sagernet/sing-box/adapter/inbound"
|
|
"github.com/sagernet/sing-box/adapter/outbound"
|
|
"github.com/sagernet/sing-box/adapter/service"
|
|
"github.com/sagernet/sing-box/dns"
|
|
"github.com/sagernet/sing-box/dns/transport"
|
|
"github.com/sagernet/sing-box/dns/transport/dhcp"
|
|
"github.com/sagernet/sing-box/dns/transport/fakeip"
|
|
"github.com/sagernet/sing-box/dns/transport/hosts"
|
|
"github.com/sagernet/sing-box/dns/transport/local"
|
|
"github.com/sagernet/sing-box/dns/transport/quic"
|
|
"github.com/sagernet/sing-box/protocol/anytls"
|
|
"github.com/sagernet/sing-box/protocol/block"
|
|
"github.com/sagernet/sing-box/protocol/direct"
|
|
protocolDNS "github.com/sagernet/sing-box/protocol/dns"
|
|
"github.com/sagernet/sing-box/protocol/group"
|
|
"github.com/sagernet/sing-box/protocol/http"
|
|
"github.com/sagernet/sing-box/protocol/mixed"
|
|
"github.com/sagernet/sing-box/protocol/naive"
|
|
_ "github.com/sagernet/sing-box/protocol/naive/quic"
|
|
"github.com/sagernet/sing-box/protocol/redirect"
|
|
"github.com/sagernet/sing-box/protocol/shadowsocks"
|
|
"github.com/sagernet/sing-box/protocol/shadowtls"
|
|
"github.com/sagernet/sing-box/protocol/socks"
|
|
"github.com/sagernet/sing-box/protocol/ssh"
|
|
"github.com/sagernet/sing-box/protocol/tailscale"
|
|
"github.com/sagernet/sing-box/protocol/tor"
|
|
"github.com/sagernet/sing-box/protocol/trojan"
|
|
"github.com/sagernet/sing-box/protocol/tuic"
|
|
"github.com/sagernet/sing-box/protocol/tun"
|
|
"github.com/sagernet/sing-box/protocol/vless"
|
|
"github.com/sagernet/sing-box/protocol/vmess"
|
|
"github.com/sagernet/sing-box/protocol/wireguard"
|
|
"github.com/sagernet/sing-box/service/derp"
|
|
"github.com/sagernet/sing-box/service/resolved"
|
|
"github.com/sagernet/sing-box/service/ssmapi"
|
|
_ "github.com/sagernet/sing-box/transport/v2rayquic"
|
|
_ "github.com/sagernet/sing-dns/quic"
|
|
)
|
|
|
|
func InboundRegistry() *inbound.Registry {
|
|
registry := inbound.NewRegistry()
|
|
|
|
tun.RegisterInbound(registry)
|
|
redirect.RegisterRedirect(registry)
|
|
redirect.RegisterTProxy(registry)
|
|
direct.RegisterInbound(registry)
|
|
|
|
socks.RegisterInbound(registry)
|
|
http.RegisterInbound(registry)
|
|
mixed.RegisterInbound(registry)
|
|
|
|
shadowsocks.RegisterInbound(registry)
|
|
vmess.RegisterInbound(registry)
|
|
trojan.RegisterInbound(registry)
|
|
naive.RegisterInbound(registry)
|
|
shadowtls.RegisterInbound(registry)
|
|
vless.RegisterInbound(registry)
|
|
anytls.RegisterInbound(registry)
|
|
|
|
hysteria.RegisterInbound(registry)
|
|
tuic.RegisterInbound(registry)
|
|
hysteria2.RegisterInbound(registry)
|
|
|
|
return registry
|
|
}
|
|
|
|
func OutboundRegistry() *outbound.Registry {
|
|
registry := outbound.NewRegistry()
|
|
|
|
direct.RegisterOutbound(registry)
|
|
|
|
block.RegisterOutbound(registry)
|
|
protocolDNS.RegisterOutbound(registry)
|
|
|
|
group.RegisterSelector(registry)
|
|
group.RegisterURLTest(registry)
|
|
|
|
socks.RegisterOutbound(registry)
|
|
http.RegisterOutbound(registry)
|
|
shadowsocks.RegisterOutbound(registry)
|
|
vmess.RegisterOutbound(registry)
|
|
trojan.RegisterOutbound(registry)
|
|
tor.RegisterOutbound(registry)
|
|
ssh.RegisterOutbound(registry)
|
|
shadowtls.RegisterOutbound(registry)
|
|
vless.RegisterOutbound(registry)
|
|
anytls.RegisterOutbound(registry)
|
|
|
|
hysteria.RegisterOutbound(registry)
|
|
tuic.RegisterOutbound(registry)
|
|
hysteria2.RegisterOutbound(registry)
|
|
wireguard.RegisterOutbound(registry)
|
|
|
|
return registry
|
|
}
|
|
|
|
func EndpointRegistry() *endpoint.Registry {
|
|
registry := endpoint.NewRegistry()
|
|
|
|
wireguard.RegisterEndpoint(registry)
|
|
registerTailscaleEndpoint(registry)
|
|
|
|
return registry
|
|
}
|
|
|
|
func DNSTransportRegistry() *dns.TransportRegistry {
|
|
registry := dns.NewTransportRegistry()
|
|
|
|
transport.RegisterTCP(registry)
|
|
transport.RegisterUDP(registry)
|
|
transport.RegisterTLS(registry)
|
|
transport.RegisterHTTPS(registry)
|
|
hosts.RegisterTransport(registry)
|
|
local.RegisterTransport(registry)
|
|
fakeip.RegisterTransport(registry)
|
|
|
|
registerQUICTransports(registry)
|
|
registerDHCPTransport(registry)
|
|
registerTailscaleTransport(registry)
|
|
|
|
return registry
|
|
}
|
|
|
|
func registerTailscaleEndpoint(registry *endpoint.Registry) {
|
|
tailscale.RegisterEndpoint(registry)
|
|
}
|
|
|
|
func registerTailscaleTransport(registry *dns.TransportRegistry) {
|
|
tailscale.RegistryTransport(registry)
|
|
}
|
|
|
|
func registerDERPService(registry *service.Registry) {
|
|
derp.Register(registry)
|
|
}
|
|
|
|
func registerQUICTransports(registry *dns.TransportRegistry) {
|
|
quic.RegisterTransport(registry)
|
|
quic.RegisterHTTP3Transport(registry)
|
|
}
|
|
|
|
func registerDHCPTransport(registry *dns.TransportRegistry) {
|
|
dhcp.RegisterTransport(registry)
|
|
}
|
|
|
|
func ServiceRegistry() *service.Registry {
|
|
registry := service.NewRegistry()
|
|
|
|
resolved.RegisterService(registry)
|
|
ssmapi.RegisterService(registry)
|
|
|
|
registerDERPService(registry)
|
|
|
|
return registry
|
|
}
|