2023-01-28 05:37:20 +08:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-02-18 07:00:41 +08:00
|
|
|
|
2023-01-07 07:39:34 +08:00
|
|
|
//go:build ios || (!linux && !darwin && !freebsd && !openbsd)
|
2022-02-18 07:00:41 +08:00
|
|
|
|
|
|
|
package ipnlocal
|
|
|
|
|
2022-09-18 12:32:21 +08:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"tailscale.com/tailcfg"
|
|
|
|
)
|
|
|
|
|
2022-02-18 07:00:41 +08:00
|
|
|
func (b *LocalBackend) getSSHHostKeyPublicStrings() []string {
|
|
|
|
return nil
|
|
|
|
}
|
2022-09-18 12:32:21 +08:00
|
|
|
|
|
|
|
func (b *LocalBackend) getSSHUsernames(*tailcfg.C2NSSHUsernamesRequest) (*tailcfg.C2NSSHUsernamesResponse, error) {
|
|
|
|
return nil, errors.New("not implemented")
|
|
|
|
}
|