Add cloudflared inbound support

This commit is contained in:
世界
2026-04-08 14:39:41 +08:00
parent 813b634d08
commit 1f1ba549fd
12 changed files with 360 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
//go:build with_cloudflared
package include
import (
"github.com/sagernet/sing-box/adapter/inbound"
"github.com/sagernet/sing-box/protocol/cloudflare"
)
func registerCloudflaredInbound(registry *inbound.Registry) {
cloudflare.RegisterInbound(registry)
}