mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
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.
30 lines
488 B
Go
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")
|
|
}
|