mirror of
https://github.com/tailscale/tailscale.git
synced 2025-06-10 01:38:35 +00:00

Updates #12614 Change-Id: I0e2a18eca3515d3d6206c059110556d2bbbb0c5c Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
21 lines
486 B
Go
21 lines
486 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build ios || android || (!linux && !darwin && !freebsd && !openbsd && !plan9)
|
|
|
|
package ipnlocal
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"tailscale.com/tailcfg"
|
|
)
|
|
|
|
func (b *LocalBackend) getSSHHostKeyPublicStrings() ([]string, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (b *LocalBackend) getSSHUsernames(*tailcfg.C2NSSHUsernamesRequest) (*tailcfg.C2NSSHUsernamesResponse, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|