You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
347 B
Go
23 lines
347 B
Go
4 years ago
|
// +build windows
|
||
|
|
||
|
package obfssh
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"syscall"
|
||
|
|
||
|
"github.com/containerd/console"
|
||
|
"golang.org/x/crypto/ssh"
|
||
|
)
|
||
|
|
||
|
func consoleChange(_console console.Console, session *ssh.Session) {
|
||
|
|
||
|
}
|
||
|
|
||
|
func newPty() (console.Console, string, error) {
|
||
|
return nil, "", errors.New("not supported")
|
||
|
}
|
||
|
|
||
|
func setProcAttr(attr *syscall.SysProcAttr) {
|
||
|
}
|