...

Source file src/github.com/moby/term/termios_bsd.go

Documentation: github.com/moby/term

     1  //go:build darwin || freebsd || openbsd || netbsd
     2  // +build darwin freebsd openbsd netbsd
     3  
     4  package term
     5  
     6  import (
     7  	"golang.org/x/sys/unix"
     8  )
     9  
    10  const (
    11  	getTermios = unix.TIOCGETA
    12  	setTermios = unix.TIOCSETA
    13  )
    14  

View as plain text