mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-07-21 06:43:30 +03:00
Add OpenVPN, TrustTunnel, Sudoku, inbound managers. Fixes
This commit is contained in:
17
include/trusttunnel.go
Normal file
17
include/trusttunnel.go
Normal file
@@ -0,0 +1,17 @@
|
||||
//go:build with_trusttunnel
|
||||
|
||||
package include
|
||||
|
||||
import (
|
||||
"github.com/sagernet/sing-box/adapter/inbound"
|
||||
"github.com/sagernet/sing-box/adapter/outbound"
|
||||
"github.com/sagernet/sing-box/protocol/trusttunnel"
|
||||
)
|
||||
|
||||
func registerTrustTunnelInbound(registry *inbound.Registry) {
|
||||
trusttunnel.RegisterInbound(registry)
|
||||
}
|
||||
|
||||
func registerTrustTunnelOutbound(registry *outbound.Registry) {
|
||||
trusttunnel.RegisterOutbound(registry)
|
||||
}
|
||||
Reference in New Issue
Block a user