mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-24 09:51:41 +00:00

Updates #5794 Change-Id: I888a7a47752e09005f6d9e8a8412b42df19c5c89 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")
|
|
}
|