termios_bsd.go 443 B

1234567891011121314151617
  1. //go:build darwin || dragonfly || freebsd || netbsd || openbsd
  2. // Copyright 2015 go-termios Author. All Rights Reserved.
  3. // https://github.com/go-termios/termios
  4. // Author: John Lenton <chipaca@github.com>
  5. package eunix
  6. import "golang.org/x/sys/unix"
  7. const (
  8. getAttrIOCTL = unix.TIOCGETA
  9. setAttrNowIOCTL = unix.TIOCSETA
  10. setAttrDrainIOCTL = unix.TIOCSETAW
  11. setAttrFlushIOCTL = unix.TIOCSETAF
  12. flushIOCTL = unix.TIOCFLUSH
  13. )