2021-08-27 05:50:55 +08:00
|
|
|
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-02-25 04:27:42 +08:00
|
|
|
//go:build linux || (darwin && !ios)
|
|
|
|
// +build linux darwin,!ios
|
2021-08-27 05:50:55 +08:00
|
|
|
|
|
|
|
package netstack
|
|
|
|
|
2022-02-16 03:59:21 +08:00
|
|
|
import "tailscale.com/ssh/tailssh"
|
2021-08-27 05:50:55 +08:00
|
|
|
|
|
|
|
func init() {
|
2022-02-16 03:59:21 +08:00
|
|
|
handleSSH = tailssh.Handle
|
2021-08-27 05:50:55 +08:00
|
|
|
}
|