mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-09 23:28:20 +08:00
14 lines
147 B
Go
14 lines
147 B
Go
// +build !windows,!solaris
|
|
|
|
package termios
|
|
|
|
const (
|
|
TCIFLUSH = 0
|
|
TCOFLUSH = 1
|
|
TCIOFLUSH = 2
|
|
|
|
TCSANOW = 0
|
|
TCSADRAIN = 1
|
|
TCSAFLUSH = 2
|
|
)
|