ssh_stub.go 501 B

1234567891011121314151617181920
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. //go:build ts_omit_ssh || ios || android || (!linux && !darwin && !freebsd && !openbsd && !plan9)
  4. package ipnlocal
  5. import (
  6. "errors"
  7. "tailscale.com/tailcfg"
  8. )
  9. func (b *LocalBackend) getSSHHostKeyPublicStrings() ([]string, error) {
  10. return nil, nil
  11. }
  12. func (b *LocalBackend) getSSHUsernames(*tailcfg.C2NSSHUsernamesRequest) (*tailcfg.C2NSSHUsernamesResponse, error) {
  13. return nil, errors.New("not implemented")
  14. }