mirror of
https://github.com/MatsuriDayo/NekoBoxForAndroid.git
synced 2025-12-19 14:40:06 +08:00
103 lines
3.0 KiB
Go
103 lines
3.0 KiB
Go
package libcore
|
|
|
|
import (
|
|
"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/protocol/anytls"
|
|
"github.com/sagernet/sing-box/protocol/block"
|
|
"github.com/sagernet/sing-box/protocol/direct"
|
|
"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/hysteria"
|
|
"github.com/sagernet/sing-box/protocol/hysteria2"
|
|
"github.com/sagernet/sing-box/protocol/mixed"
|
|
"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/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/experimental/clashapi"
|
|
_ "github.com/sagernet/sing-dns/quic"
|
|
)
|
|
|
|
func nekoboxAndroidInboundRegistry() *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)
|
|
|
|
return registry
|
|
}
|
|
|
|
func nekoboxAndroidOutboundRegistry() *outbound.Registry {
|
|
registry := outbound.NewRegistry()
|
|
|
|
direct.RegisterOutbound(registry)
|
|
|
|
block.RegisterOutbound(registry)
|
|
dns.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)
|
|
|
|
registerQUICOutbounds(registry)
|
|
registerWireGuardOutbound(registry)
|
|
|
|
return registry
|
|
}
|
|
|
|
func nekoboxAndroidEndpointRegistry() *endpoint.Registry {
|
|
registry := endpoint.NewRegistry()
|
|
|
|
registerWireGuardEndpoint(registry)
|
|
|
|
return registry
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
func registerWireGuardOutbound(registry *outbound.Registry) {
|
|
wireguard.RegisterOutbound(registry)
|
|
}
|
|
|
|
func registerWireGuardEndpoint(registry *endpoint.Registry) {
|
|
wireguard.RegisterEndpoint(registry)
|
|
}
|