maddy/cmd/imapsql-ctl/termios_stub.go
fox.cpp ae8fe2b14e
Fork imapsql-ctl utility from go-imap-sql repo
1. There is only one version for maddy and imapsql-ctl utility.
This prevents confusion about compatibility.

2. Modified imapsql-ctl understands maddy config format, this allows
it to read needed values from it without the need for lengthy commmand
line arguments.

Closes #148.
2019-10-16 23:19:40 +03:00

30 lines
488 B
Go

//+build !linux
package main
import (
"errors"
"os"
)
type Termios struct {
Iflag uint32
Oflag uint32
Cflag uint32
Lflag uint32
Cc [20]byte
Ispeed uint32
Ospeed uint32
}
func TurnOnRawIO(tty *os.File) (orig Termios, err error) {
return Termios{}, errors.New("not implemented")
}
func TcSetAttr(fd uintptr, termios *Termios) error {
return errors.New("not implemented")
}
func TcGetAttr(fd uintptr) (*Termios, error) {
return nil, errors.New("not implemented")
}