mirror of
https://github.com/tailscale/tailscale.git
synced 2025-08-25 12:47:31 +00:00
ipn/ipnlocal: add peerapi endpoint for relay server endpoint allocation
Relay server initialization is performed as part of handling peerapi endpoint allocation requests in similar fashion to SSH server init. The relay server is not supported on iOS for now. Updates tailscale/corp#27502 Signed-off-by: Jordan Whited <jordan@tailscale.com>
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
//go:build !ios
|
||||
|
||||
// Package udprelay contains constructs for relaying Disco and WireGuard packets
|
||||
// between Tailscale clients over UDP. This package is currently considered
|
||||
// experimental.
|
@@ -1,6 +1,8 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
//go:build !ios
|
||||
|
||||
package udprelay
|
||||
|
||||
import (
|
8
net/udprelay/server_ios.go
Normal file
8
net/udprelay/server_ios.go
Normal file
@@ -0,0 +1,8 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
//go:build ios
|
||||
|
||||
package udprelay
|
||||
|
||||
type ServerEndpoint struct{}
|
Reference in New Issue
Block a user