Files
sing-box-extended-mirror/include/openconnect.go
T

18 lines
421 B
Go
Raw Normal View History

2026-07-17 16:21:03 +08:00
//go:build with_openconnect
package include
import (
"github.com/sagernet/sing-box/adapter/endpoint"
"github.com/sagernet/sing-box/dns"
2026-07-17 16:21:03 +08:00
"github.com/sagernet/sing-box/protocol/openconnect"
)
func registerOpenConnectEndpoint(registry *endpoint.Registry) {
openconnect.RegisterEndpoint(registry)
}
func registerOpenConnectDNSTransport(registry *dns.TransportRegistry) {
openconnect.RegisterDNSTransport(registry)
}