[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.2.2

1.9.2.2 ! jason       1: /* RCSID("$OpenBSD: ttymodes.h,v 1.11 2001/04/14 16:33:20 stevesk Exp $"); */
1.1       deraadt     2: /*
1.5       deraadt     3:  * Author: Tatu Ylonen <ylo@cs.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.2.2 ! jason      14: /*
        !            15:  * SSH2 tty modes support by Kevin Steves.
        !            16:  * Copyright (c) 2001 Kevin Steves.  All rights reserved.
        !            17:  *
        !            18:  * Redistribution and use in source and binary forms, with or without
        !            19:  * modification, are permitted provided that the following conditions
        !            20:  * are met:
        !            21:  * 1. Redistributions of source code must retain the above copyright
        !            22:  *    notice, this list of conditions and the following disclaimer.
        !            23:  * 2. Redistributions in binary form must reproduce the above copyright
        !            24:  *    notice, this list of conditions and the following disclaimer in the
        !            25:  *    documentation and/or other materials provided with the distribution.
        !            26:  *
        !            27:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
        !            28:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
        !            29:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
        !            30:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
        !            31:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
        !            32:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
        !            33:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
        !            34:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        !            35:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
        !            36:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        !            37:  */
1.1       deraadt    38:
1.9.2.2 ! jason      39: /*
        !            40:  * SSH1:
        !            41:  * The tty mode description is a stream of bytes.  The stream consists of
1.5       deraadt    42:  * opcode-arguments pairs.  It is terminated by opcode TTY_OP_END (0).
                     43:  * Opcodes 1-127 have one-byte arguments.  Opcodes 128-159 have integer
                     44:  * arguments.  Opcodes 160-255 are not yet defined, and cause parsing to
                     45:  * stop (they should only be used after any other data).
1.9.2.2 ! jason      46:  *
        !            47:  * SSH2:
        !            48:  * Differences between SSH1 and SSH2 terminal mode encoding include:
        !            49:  * 1. Encoded terminal modes are represented as a string, and a stream
        !            50:  *    of bytes within that string.
        !            51:  * 2. Opcode arguments are uint32 (1-159); 160-255 remain undefined.
        !            52:  * 3. The values for TTY_OP_ISPEED and TTY_OP_OSPEED are different;
        !            53:  *    128 and 129 vs. 192 and 193 respectively.
1.5       deraadt    54:  *
                     55:  * The client puts in the stream any modes it knows about, and the
                     56:  * server ignores any modes it does not know about.  This allows some degree
                     57:  * of machine-independence, at least between systems that use a posix-like
                     58:  * tty interface.  The protocol can support other systems as well, but might
                     59:  * require reimplementing as mode names would likely be different.
                     60:  */
                     61:
                     62: /*
                     63:  * Some constants and prototypes are defined in packet.h; this file
1.6       markus     64:  * is only intended for including from ttymodes.c.
1.5       deraadt    65:  */
1.1       deraadt    66:
1.9.2.1   jason      67: /* termios macro */
1.1       deraadt    68: /* name, op */
1.9.2.1   jason      69: TTYCHAR(VINTR, 1)
                     70: TTYCHAR(VQUIT, 2)
                     71: TTYCHAR(VERASE, 3)
1.4       deraadt    72: #if defined(VKILL)
1.9.2.1   jason      73: TTYCHAR(VKILL, 4)
1.6       markus     74: #endif /* VKILL */
1.9.2.1   jason      75: TTYCHAR(VEOF, 5)
1.4       deraadt    76: #if defined(VEOL)
1.9.2.1   jason      77: TTYCHAR(VEOL, 6)
1.6       markus     78: #endif /* VEOL */
1.9.2.1   jason      79: #ifdef VEOL2
1.1       deraadt    80: TTYCHAR(VEOL2, 7)
1.6       markus     81: #endif /* VEOL2 */
1.9.2.1   jason      82: TTYCHAR(VSTART, 8)
                     83: TTYCHAR(VSTOP, 9)
1.4       deraadt    84: #if defined(VSUSP)
1.9.2.1   jason      85: TTYCHAR(VSUSP, 10)
1.6       markus     86: #endif /* VSUSP */
1.4       deraadt    87: #if defined(VDSUSP)
1.9.2.1   jason      88: TTYCHAR(VDSUSP, 11)
1.6       markus     89: #endif /* VDSUSP */
1.4       deraadt    90: #if defined(VREPRINT)
1.9.2.1   jason      91: TTYCHAR(VREPRINT, 12)
1.6       markus     92: #endif /* VREPRINT */
1.4       deraadt    93: #if defined(VWERASE)
1.9.2.1   jason      94: TTYCHAR(VWERASE, 13)
1.6       markus     95: #endif /* VWERASE */
1.4       deraadt    96: #if defined(VLNEXT)
1.9.2.1   jason      97: TTYCHAR(VLNEXT, 14)
1.6       markus     98: #endif /* VLNEXT */
1.4       deraadt    99: #if defined(VFLUSH)
1.9.2.1   jason     100: TTYCHAR(VFLUSH, 15)
1.6       markus    101: #endif /* VFLUSH */
1.1       deraadt   102: #ifdef VSWTCH
1.9.2.1   jason     103: TTYCHAR(VSWTCH, 16)
1.6       markus    104: #endif /* VSWTCH */
1.4       deraadt   105: #if defined(VSTATUS)
1.9.2.1   jason     106: TTYCHAR(VSTATUS, 17)
1.6       markus    107: #endif /* VSTATUS */
1.4       deraadt   108: #ifdef VDISCARD
1.9.2.1   jason     109: TTYCHAR(VDISCARD, 18)
1.6       markus    110: #endif /* VDISCARD */
1.1       deraadt   111:
                    112: /* name, field, op */
1.9.2.1   jason     113: TTYMODE(IGNPAR,        c_iflag, 30)
                    114: TTYMODE(PARMRK,        c_iflag, 31)
                    115: TTYMODE(INPCK,         c_iflag, 32)
                    116: TTYMODE(ISTRIP,        c_iflag, 33)
                    117: TTYMODE(INLCR,         c_iflag, 34)
                    118: TTYMODE(IGNCR,         c_iflag, 35)
                    119: TTYMODE(ICRNL,         c_iflag, 36)
1.4       deraadt   120: #if defined(IUCLC)
1.9.2.1   jason     121: TTYMODE(IUCLC,         c_iflag, 37)
1.4       deraadt   122: #endif
1.9.2.1   jason     123: TTYMODE(IXON,          c_iflag, 38)
                    124: TTYMODE(IXANY,         c_iflag, 39)
                    125: TTYMODE(IXOFF,         c_iflag, 40)
1.4       deraadt   126: #ifdef IMAXBEL
1.9.2.1   jason     127: TTYMODE(IMAXBEL,c_iflag, 41)
1.6       markus    128: #endif /* IMAXBEL */
1.1       deraadt   129:
1.9.2.1   jason     130: TTYMODE(ISIG,  c_lflag, 50)
                    131: TTYMODE(ICANON,        c_lflag, 51)
1.4       deraadt   132: #ifdef XCASE
1.9.2.1   jason     133: TTYMODE(XCASE, c_lflag, 52)
1.4       deraadt   134: #endif
1.9.2.1   jason     135: TTYMODE(ECHO,  c_lflag, 53)
                    136: TTYMODE(ECHOE, c_lflag, 54)
                    137: TTYMODE(ECHOK, c_lflag, 55)
                    138: TTYMODE(ECHONL,        c_lflag, 56)
                    139: TTYMODE(NOFLSH,        c_lflag, 57)
                    140: TTYMODE(TOSTOP,        c_lflag, 58)
1.4       deraadt   141: #ifdef IEXTEN
1.9.2.1   jason     142: TTYMODE(IEXTEN, c_lflag, 59)
1.6       markus    143: #endif /* IEXTEN */
1.4       deraadt   144: #if defined(ECHOCTL)
1.9.2.1   jason     145: TTYMODE(ECHOCTL,c_lflag, 60)
1.6       markus    146: #endif /* ECHOCTL */
1.4       deraadt   147: #ifdef ECHOKE
1.9.2.1   jason     148: TTYMODE(ECHOKE,        c_lflag, 61)
1.6       markus    149: #endif /* ECHOKE */
1.4       deraadt   150: #if defined(PENDIN)
1.9.2.1   jason     151: TTYMODE(PENDIN,        c_lflag, 62)
1.6       markus    152: #endif /* PENDIN */
1.1       deraadt   153:
1.9.2.1   jason     154: TTYMODE(OPOST, c_oflag, 70)
1.4       deraadt   155: #if defined(OLCUC)
1.9.2.1   jason     156: TTYMODE(OLCUC, c_oflag, 71)
1.4       deraadt   157: #endif
1.9.2.1   jason     158: TTYMODE(ONLCR, c_oflag, 72)
1.4       deraadt   159: #ifdef OCRNL
1.9.2.1   jason     160: TTYMODE(OCRNL, c_oflag, 73)
1.4       deraadt   161: #endif
                    162: #ifdef ONOCR
1.9.2.1   jason     163: TTYMODE(ONOCR, c_oflag, 74)
1.4       deraadt   164: #endif
                    165: #ifdef ONLRET
1.9.2.1   jason     166: TTYMODE(ONLRET,        c_oflag, 75)
1.4       deraadt   167: #endif
1.1       deraadt   168:
1.9.2.1   jason     169: TTYMODE(CS7,   c_cflag, 90)
                    170: TTYMODE(CS8,   c_cflag, 91)
                    171: TTYMODE(PARENB,        c_cflag, 92)
                    172: TTYMODE(PARODD,        c_cflag, 93)