diff options
Diffstat (limited to 'ipn/ipnlocal')
| -rw-r--r-- | ipn/ipnlocal/web_client.go | 2 | ||||
| -rw-r--r-- | ipn/ipnlocal/web_client_stub.go | 30 |
2 files changed, 0 insertions, 32 deletions
diff --git a/ipn/ipnlocal/web_client.go b/ipn/ipnlocal/web_client.go index ee919d976..09ff992b1 100644 --- a/ipn/ipnlocal/web_client.go +++ b/ipn/ipnlocal/web_client.go @@ -1,8 +1,6 @@ // Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause -//go:build !ios && !android - package ipnlocal import ( diff --git a/ipn/ipnlocal/web_client_stub.go b/ipn/ipnlocal/web_client_stub.go deleted file mode 100644 index 1dfc8c27c..000000000 --- a/ipn/ipnlocal/web_client_stub.go +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) Tailscale Inc & AUTHORS -// SPDX-License-Identifier: BSD-3-Clause - -//go:build ios || android - -package ipnlocal - -import ( - "errors" - "net" - - "tailscale.com/client/tailscale" -) - -const webClientPort = 5252 - -type webClient struct{} - -func (b *LocalBackend) ConfigureWebClient(lc *tailscale.LocalClient) {} - -func (b *LocalBackend) webClientGetOrInit() error { - return errors.New("not implemented") -} - -func (b *LocalBackend) webClientShutdown() {} - -func (b *LocalBackend) handleWebClientConn(c net.Conn) error { - return errors.New("not implemented") -} -func (b *LocalBackend) updateWebClientListenersLocked() {} |
