mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
9 lines
132 B
Go
9 lines
132 B
Go
// +build linux
|
|
|
|
package tty
|
|
|
|
const (
|
|
ioctlReadTermios = 0x5401 // syscall.TCGETS
|
|
ioctlWriteTermios = 0x5402 // syscall.TCSETS
|
|
)
|