/* @(#)errors.h 1.1 1/26/85 */ /* * Recognized error codes */ #define HOST_RAW 1 /* Can't set host tty to raw mode */ #define REMOTE_RAW 2 /* Can't set remote tty to raw mode */ #define HOST_COOKED 3 /* Can't restore host tty to cooked mode */ #define REMOTE_COOKED 4 /* Can't restore remote tty to cooked mode */ #define HOST_TCGETA 5 /* TCGETA on host tty failed */ #define REMOTE_TCGETA 6 /* TCGETA on remote tty failed */ #define REMTTY 7 /* Can't open remote tty */ #define CONNECT 8 /* Nothing to connect to */ #define PHOTO 9 /* Can't open photo file */ #define RCVFILE 10 /* Can't create received file */ #define SPEED 11 /* Bad line speed */ #define MODE 12 /* Must specify mode */ #define NOCONNECT 13 /* Connect not implemented */