We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d3f9f4 commit 9eb0be3Copy full SHA for 9eb0be3
ssh/terminal/util.go
@@ -2,7 +2,7 @@
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4
5
-// +build darwin dragonfly freebsd linux,!appengine netbsd openbsd
+// +build aix darwin dragonfly freebsd linux,!appengine netbsd openbsd
6
7
// Package terminal provides support functions for dealing with terminals, as
8
// commonly found on UNIX systems.
ssh/terminal/util_aix.go
@@ -0,0 +1,12 @@
1
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build aix
+package terminal
9
+import "golang.org/x/sys/unix"
10
11
+const ioctlReadTermios = unix.TCGETS
12
+const ioctlWriteTermios = unix.TCSETS
0 commit comments