Add cloudflared inbound

This commit is contained in:
世界
2026-04-10 13:23:42 +08:00
parent 2e932bef52
commit b212049768
18 changed files with 418 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)
}