[BACK]Return to ttymodes.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/ttymodes.h, Revision 1.9

1.1       deraadt     1: /*
1.5       deraadt     2:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      3:  *     SGTTY stuff contributed by Janne Snabb <snabb@niksula.hut.fi>
                      4:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      5:  *                    All rights reserved
1.7       markus      6:  *
1.9     ! deraadt     7:  * As far as I am concerned, the code I have written for this software
        !             8:  * can be used freely for any purpose.  Any derived versions of this
        !             9:  * software must be clearly marked as such, and if the derived work is
        !            10:  * incompatible with the protocol description in the RFC file, it must be
        !            11:  * called by a name other than "ssh" or "Secure Shell".
1.5       deraadt    12:  */
1.1       deraadt    13:
1.9     ! deraadt    14: /* RCSID("$OpenBSD: ttymodes.h,v 1.8 2000/06/20 01:39:45 markus Exp $"); */
1.1       deraadt    15:
                     16: /* The tty mode description is a stream of bytes.  The stream consists of
1.5       deraadt    17:  * opcode-arguments pairs.  It is terminated by opcode TTY_OP_END (0).
                     18:  * Opcodes 1-127 have one-byte arguments.  Opcodes 128-159 have integer
                     19:  * arguments.  Opcodes 160-255 are not yet defined, and cause parsing to
                     20:  * stop (they should only be used after any other data).
                     21:  *
                     22:  * The client puts in the stream any modes it knows about, and the
                     23:  * server ignores any modes it does not know about.  This allows some degree
                     24:  * of machine-independence, at least between systems that use a posix-like
                     25:  * tty interface.  The protocol can support other systems as well, but might
                     26:  * require reimplementing as mode names would likely be different.
                     27:  */
                     28:
                     29: /*
                     30:  * Some constants and prototypes are defined in packet.h; this file
1.6       markus     31:  * is only intended for including from ttymodes.c.
1.5       deraadt    32:  */
1.1       deraadt    33:
1.6       markus     34: /* termios macro */            /* sgtty macro */
1.1       deraadt    35: /* name, op */
1.6       markus     36: TTYCHAR(VINTR, 1)              SGTTYCHAR(tiotc.t_intrc, 1)
                     37: TTYCHAR(VQUIT, 2)              SGTTYCHAR(tiotc.t_quitc, 2)
                     38: TTYCHAR(VERASE, 3)             SGTTYCHAR(tio.sg_erase, 3)
1.4       deraadt    39: #if defined(VKILL)
1.6       markus     40: TTYCHAR(VKILL, 4)              SGTTYCHAR(tio.sg_kill, 4)
                     41: #endif /* VKILL */
                     42: TTYCHAR(VEOF, 5)               SGTTYCHAR(tiotc.t_eofc, 5)
1.4       deraadt    43: #if defined(VEOL)
1.6       markus     44: TTYCHAR(VEOL, 6)               SGTTYCHAR(tiotc.t_brkc, 6)
                     45: #endif /* VEOL */
1.4       deraadt    46: #ifdef VEOL2                   /* n/a */
1.1       deraadt    47: TTYCHAR(VEOL2, 7)
1.6       markus     48: #endif /* VEOL2 */
                     49: TTYCHAR(VSTART, 8)             SGTTYCHAR(tiotc.t_startc, 8)
                     50: TTYCHAR(VSTOP, 9)              SGTTYCHAR(tiotc.t_stopc, 9)
1.4       deraadt    51: #if defined(VSUSP)
1.6       markus     52: TTYCHAR(VSUSP, 10)             SGTTYCHAR(tioltc.t_suspc, 10)
                     53: #endif /* VSUSP */
1.4       deraadt    54: #if defined(VDSUSP)
1.6       markus     55: TTYCHAR(VDSUSP, 11)            SGTTYCHAR(tioltc.t_dsuspc, 11)
                     56: #endif /* VDSUSP */
1.4       deraadt    57: #if defined(VREPRINT)
1.6       markus     58: TTYCHAR(VREPRINT, 12)          SGTTYCHAR(tioltc.t_rprntc, 12)
                     59: #endif /* VREPRINT */
1.4       deraadt    60: #if defined(VWERASE)
1.6       markus     61: TTYCHAR(VWERASE, 13)           SGTTYCHAR(tioltc.t_werasc, 13)
                     62: #endif /* VWERASE */
1.4       deraadt    63: #if defined(VLNEXT)
1.6       markus     64: TTYCHAR(VLNEXT, 14)            SGTTYCHAR(tioltc.t_lnextc, 14)
                     65: #endif /* VLNEXT */
1.4       deraadt    66: #if defined(VFLUSH)
1.6       markus     67: TTYCHAR(VFLUSH, 15)            SGTTYCHAR(tioltc.t_flushc, 15)
                     68: #endif /* VFLUSH */
1.1       deraadt    69: #ifdef VSWTCH
                     70: TTYCHAR(VSWTCH, 16)            /* n/a */
1.6       markus     71: #endif /* VSWTCH */
1.4       deraadt    72: #if defined(VSTATUS)
1.6       markus     73: TTYCHAR(VSTATUS, 17)           SGTTYCHAR(tiots.tc_statusc, 17)
                     74: #endif /* VSTATUS */
1.4       deraadt    75: #ifdef VDISCARD
1.1       deraadt    76: TTYCHAR(VDISCARD, 18)          /* n/a */
1.6       markus     77: #endif /* VDISCARD */
1.1       deraadt    78:
                     79: /* name, field, op */
1.6       markus     80: TTYMODE(IGNPAR,        c_iflag, 30)    /* n/a */
                     81: TTYMODE(PARMRK,        c_iflag, 31)    /* n/a */
                     82: TTYMODE(INPCK,         c_iflag, 32)    SGTTYMODEN(ANYP, tio.sg_flags, 32)
                     83: TTYMODE(ISTRIP,        c_iflag, 33)    SGTTYMODEN(LPASS8, tiolm, 33)
                     84: TTYMODE(INLCR,         c_iflag, 34)    /* n/a */
                     85: TTYMODE(IGNCR,         c_iflag, 35)    /* n/a */
                     86: TTYMODE(ICRNL,         c_iflag, 36)    SGTTYMODE(CRMOD, tio.sg_flags, 36)
1.4       deraadt    87: #if defined(IUCLC)
1.6       markus     88: TTYMODE(IUCLC,         c_iflag, 37)    SGTTYMODE(LCASE, tio.sg_flags, 37)
1.4       deraadt    89: #endif
1.6       markus     90: TTYMODE(IXON,          c_iflag, 38)    /* n/a */
                     91: TTYMODE(IXANY,         c_iflag, 39)    SGTTYMODEN(LDECCTQ, tiolm, 39)
                     92: TTYMODE(IXOFF,         c_iflag, 40)    SGTTYMODE(TANDEM, tio.sg_flags, 40)
1.4       deraadt    93: #ifdef IMAXBEL
1.6       markus     94: TTYMODE(IMAXBEL,c_iflag, 41)   /* n/a */
                     95: #endif /* IMAXBEL */
1.1       deraadt    96:
1.6       markus     97: TTYMODE(ISIG,  c_lflag, 50)    /* n/a */
                     98: TTYMODE(ICANON,        c_lflag, 51)    SGTTYMODEN(CBREAK, tio.sg_flags, 51)
1.4       deraadt    99: #ifdef XCASE
1.6       markus    100: TTYMODE(XCASE, c_lflag, 52)    /* n/a */
1.4       deraadt   101: #endif
1.6       markus    102: TTYMODE(ECHO,  c_lflag, 53)    SGTTYMODE(ECHO, tio.sg_flags, 53)
                    103: TTYMODE(ECHOE, c_lflag, 54)    SGTTYMODE(LCRTERA, tiolm, 54)
                    104: TTYMODE(ECHOK, c_lflag, 55)    SGTTYMODE(LCRTKIL, tiolm, 55)
                    105: TTYMODE(ECHONL,        c_lflag, 56)    /* n/a */
                    106: TTYMODE(NOFLSH,        c_lflag, 57)    SGTTYMODE(LNOFLSH, tiolm, 57)
                    107: TTYMODE(TOSTOP,        c_lflag, 58)    SGTTYMODE(LTOSTOP, tiolm, 58)
1.4       deraadt   108: #ifdef IEXTEN
1.1       deraadt   109: TTYMODE(IEXTEN, c_lflag, 59)   /* n/a */
1.6       markus    110: #endif /* IEXTEN */
1.4       deraadt   111: #if defined(ECHOCTL)
1.6       markus    112: TTYMODE(ECHOCTL,c_lflag, 60)   SGTTYMODE(LCTLECH, tiolm, 60)
                    113: #endif /* ECHOCTL */
1.4       deraadt   114: #ifdef ECHOKE
1.6       markus    115: TTYMODE(ECHOKE,        c_lflag, 61)    /* n/a */
                    116: #endif /* ECHOKE */
1.4       deraadt   117: #if defined(PENDIN)
1.6       markus    118: TTYMODE(PENDIN,        c_lflag, 62)    SGTTYMODE(LPENDIN, tiolm, 62)
                    119: #endif /* PENDIN */
1.1       deraadt   120:
1.6       markus    121: TTYMODE(OPOST, c_oflag, 70)    /* n/a */
1.4       deraadt   122: #if defined(OLCUC)
1.6       markus    123: TTYMODE(OLCUC, c_oflag, 71)    SGTTYMODE(LCASE, tio.sg_flags, 71)
1.4       deraadt   124: #endif
1.6       markus    125: TTYMODE(ONLCR, c_oflag, 72)    SGTTYMODE(CRMOD, tio.sg_flags, 72)
1.4       deraadt   126: #ifdef OCRNL
1.6       markus    127: TTYMODE(OCRNL, c_oflag, 73)    /* n/a */
1.4       deraadt   128: #endif
                    129: #ifdef ONOCR
1.6       markus    130: TTYMODE(ONOCR, c_oflag, 74)    /* n/a */
1.4       deraadt   131: #endif
                    132: #ifdef ONLRET
1.6       markus    133: TTYMODE(ONLRET,        c_oflag, 75)    /* n/a */
1.4       deraadt   134: #endif
1.1       deraadt   135:
1.6       markus    136: TTYMODE(CS7,   c_cflag, 90)    /* n/a */
                    137: TTYMODE(CS8,   c_cflag, 91)    SGTTYMODE(LPASS8, tiolm, 91)
                    138: TTYMODE(PARENB,        c_cflag, 92)    /* n/a */
                    139: TTYMODE(PARODD,        c_cflag, 93)    SGTTYMODE(ODDP, tio.sg_flags, 93)
                    140: