Files
cloudpods/vendor/github.com/pkg/term/termios/termios.go
2022-02-24 11:14:10 +08:00

48 lines
1.2 KiB
Go

// +build !windows
package termios
import (
"unsafe"
"golang.org/x/sys/unix"
)
// Tiocmget returns the state of the MODEM bits.
func Tiocmget(fd uintptr, status *int) error {
return ioctl(fd, unix.TIOCMGET, uintptr(unsafe.Pointer(status)))
}
// Tiocmset sets the state of the MODEM bits.
func Tiocmset(fd uintptr, status *int) error {
return ioctl(fd, unix.TIOCMSET, uintptr(unsafe.Pointer(status)))
}
// Tiocmbis sets the indicated modem bits.
func Tiocmbis(fd uintptr, status *int) error {
return ioctl(fd, unix.TIOCMBIS, uintptr(unsafe.Pointer(status)))
}
// Tiocmbic clears the indicated modem bits.
func Tiocmbic(fd uintptr, status *int) error {
return ioctl(fd, unix.TIOCMBIC, uintptr(unsafe.Pointer(status)))
}
// Cfmakecbreak modifies attr for cbreak mode.
func Cfmakecbreak(attr *unix.Termios) {
attr.Lflag &^= unix.ECHO | unix.ICANON
attr.Cc[unix.VMIN] = 1
attr.Cc[unix.VTIME] = 0
}
// Cfmakeraw modifies attr for raw mode.
func Cfmakeraw(attr *unix.Termios) {
attr.Iflag &^= unix.BRKINT | unix.ICRNL | unix.INPCK | unix.ISTRIP | unix.IXON
attr.Oflag &^= unix.OPOST
attr.Cflag &^= unix.CSIZE | unix.PARENB
attr.Cflag |= unix.CS8
attr.Lflag &^= unix.ECHO | unix.ICANON | unix.IEXTEN | unix.ISIG
attr.Cc[unix.VMIN] = 1
attr.Cc[unix.VTIME] = 0
}