mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-08 01:05:35 +00:00

Updates #5794 Change-Id: I7b05cd29ec02085cb503bbcd0beb61bf455002ac Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
21 lines
475 B
Go
21 lines
475 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build ios || (!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")
|
|
}
|