1 /* $OpenBSD: ttymodes.h,v 1.14 2006/03/25 22:22:43 djm Exp $ */
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
16 * SSH2 tty modes support by Kevin Steves.
17 * Copyright (c) 2001 Kevin Steves. All rights reserved.
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42 * The tty mode description is a stream of bytes. The stream consists of
43 * opcode-arguments pairs. It is terminated by opcode TTY_OP_END (0).
44 * Opcodes 1-127 have one-byte arguments. Opcodes 128-159 have integer
45 * arguments. Opcodes 160-255 are not yet defined, and cause parsing to
46 * stop (they should only be used after any other data).
49 * Differences between SSH1 and SSH2 terminal mode encoding include:
50 * 1. Encoded terminal modes are represented as a string, and a stream
51 * of bytes within that string.
52 * 2. Opcode arguments are uint32 (1-159); 160-255 remain undefined.
53 * 3. The values for TTY_OP_ISPEED and TTY_OP_OSPEED are different;
54 * 128 and 129 vs. 192 and 193 respectively.
56 * The client puts in the stream any modes it knows about, and the
57 * server ignores any modes it does not know about. This allows some degree
58 * of machine-independence, at least between systems that use a posix-like
59 * tty interface. The protocol can support other systems as well, but might
60 * require reimplementing as mode names would likely be different.
64 * Some constants and prototypes are defined in packet.h; this file
65 * is only intended for including from ttymodes.c.
110 TTYCHAR(VDISCARD
, 18)
111 #endif /* VDISCARD */
113 /* name, field, op */
114 TTYMODE(IGNPAR
, c_iflag
, 30)
115 TTYMODE(PARMRK
, c_iflag
, 31)
116 TTYMODE(INPCK
, c_iflag
, 32)
117 TTYMODE(ISTRIP
, c_iflag
, 33)
118 TTYMODE(INLCR
, c_iflag
, 34)
119 TTYMODE(IGNCR
, c_iflag
, 35)
120 TTYMODE(ICRNL
, c_iflag
, 36)
122 TTYMODE(IUCLC
, c_iflag
, 37)
124 TTYMODE(IXON
, c_iflag
, 38)
125 TTYMODE(IXANY
, c_iflag
, 39)
126 TTYMODE(IXOFF
, c_iflag
, 40)
128 TTYMODE(IMAXBEL
,c_iflag
, 41)
131 TTYMODE(ISIG
, c_lflag
, 50)
132 TTYMODE(ICANON
, c_lflag
, 51)
134 TTYMODE(XCASE
, c_lflag
, 52)
136 TTYMODE(ECHO
, c_lflag
, 53)
137 TTYMODE(ECHOE
, c_lflag
, 54)
138 TTYMODE(ECHOK
, c_lflag
, 55)
139 TTYMODE(ECHONL
, c_lflag
, 56)
140 TTYMODE(NOFLSH
, c_lflag
, 57)
141 TTYMODE(TOSTOP
, c_lflag
, 58)
143 TTYMODE(IEXTEN
, c_lflag
, 59)
146 TTYMODE(ECHOCTL
,c_lflag
, 60)
149 TTYMODE(ECHOKE
, c_lflag
, 61)
152 TTYMODE(PENDIN
, c_lflag
, 62)
155 TTYMODE(OPOST
, c_oflag
, 70)
157 TTYMODE(OLCUC
, c_oflag
, 71)
160 TTYMODE(ONLCR
, c_oflag
, 72)
163 TTYMODE(OCRNL
, c_oflag
, 73)
166 TTYMODE(ONOCR
, c_oflag
, 74)
169 TTYMODE(ONLRET
, c_oflag
, 75)
172 TTYMODE(CS7
, c_cflag
, 90)
173 TTYMODE(CS8
, c_cflag
, 91)
174 TTYMODE(PARENB
, c_cflag
, 92)
175 TTYMODE(PARODD
, c_cflag
, 93)