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