Add MTProxy, MASQUE, VPN, Link parser. Update AmneziaWG. Remove Tunneling

This commit is contained in:
Sergei Maklagin
2026-04-29 22:11:30 +03:00
parent 09f9f114aa
commit 04908a6a67
158 changed files with 7994 additions and 2277 deletions

12
include/masque.go Normal file
View File

@@ -0,0 +1,12 @@
//go:build with_masque
package include
import (
"github.com/sagernet/sing-box/adapter/outbound"
"github.com/sagernet/sing-box/protocol/masque"
)
func registerMASQUEOutbound(registry *outbound.Registry) {
masque.RegisterOutbound(registry)
}