Add new admin panel, failover, dns fallback, providers, limiters. Update XHTTP

This commit is contained in:
Sergei Maklagin
2026-05-11 00:59:35 +03:00
parent 652e0baf57
commit 3bd162ed6f
241 changed files with 36409 additions and 4086 deletions

12
include/profiler.go Normal file
View File

@@ -0,0 +1,12 @@
//go:build with_profiler
package include
import (
"github.com/sagernet/sing-box/adapter/service"
"github.com/sagernet/sing-box/service/profiler"
)
func registerProfilerService(registry *service.Registry) {
profiler.RegisterService(registry)
}