12345678910111213141516171819202122232425 |
- // +build !solaris
- package gopass
- import "golang.org/x/crypto/ssh/terminal"
- type terminalState struct {
- state *terminal.State
- }
- func isTerminal(fd uintptr) bool {
- return terminal.IsTerminal(int(fd))
- }
- func makeRaw(fd uintptr) (*terminalState, error) {
- state, err := terminal.MakeRaw(int(fd))
- return &terminalState{
- state: state,
- }, err
- }
- func restore(fd uintptr, oldState *terminalState) error {
- return terminal.Restore(int(fd), oldState.state)
- }
|