ssh.go 336 B

1234567891011121314
  1. // Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build linux || (darwin && !ios)
  5. // +build linux darwin,!ios
  6. package netstack
  7. import "tailscale.com/ssh/tailssh"
  8. func init() {
  9. handleSSH = tailssh.Handle
  10. }