Add Tailscale endpoint

This commit is contained in:
世界 2025-02-12 20:09:21 +08:00
parent 76d1f8cf5c
commit 1ac3b3565f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
23 changed files with 1269 additions and 51 deletions

View file

@ -92,6 +92,7 @@ func EndpointRegistry() *endpoint.Registry {
registry := endpoint.NewRegistry()
registerWireGuardEndpoint(registry)
registerTailscaleEndpoint(registry)
return registry
}
@ -110,6 +111,7 @@ func DNSTransportRegistry() *dns.TransportRegistry {
registerQUICTransports(registry)
registerDHCPTransport(registry)
registerTailscaleTransport(registry)
return registry
}