mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
Add Tailscale endpoint
This commit is contained in:
parent
8f9454ce72
commit
456eb3dcdc
23 changed files with 1269 additions and 51 deletions
17
include/tailscale.go
Normal file
17
include/tailscale.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
//go:build with_tailscale
|
||||
|
||||
package include
|
||||
|
||||
import (
|
||||
"github.com/sagernet/sing-box/adapter/endpoint"
|
||||
"github.com/sagernet/sing-box/dns"
|
||||
"github.com/sagernet/sing-box/protocol/tailscale"
|
||||
)
|
||||
|
||||
func registerTailscaleEndpoint(registry *endpoint.Registry) {
|
||||
tailscale.RegisterEndpoint(registry)
|
||||
}
|
||||
|
||||
func registerTailscaleTransport(registry *dns.TransportRegistry) {
|
||||
tailscale.RegistryTransport(registry)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue