]> andersk Git - openssh.git/blame - ttymodes.h
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / ttymodes.h
CommitLineData
56f824f3 1/* $OpenBSD: ttymodes.h,v 1.14 2006/03/25 22:22:43 djm Exp $ */
93c3b6de 2
8efc0c15 3/*
5260325f 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
6ae2364d 7 *
bcbf86ec 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".
5260325f 13 */
8efc0c15 14
30dcc918 15/*
16 * SSH2 tty modes support by Kevin Steves.
17 * Copyright (c) 2001 Kevin Steves. All rights reserved.
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
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.
27 *
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.
38 */
8efc0c15 39
30dcc918 40/*
41 * SSH1:
42 * The tty mode description is a stream of bytes. The stream consists of
5260325f 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).
47 *
30dcc918 48 * SSH2:
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.
55 *
5260325f 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.
61 */
8efc0c15 62
5260325f 63/*
64 * Some constants and prototypes are defined in packet.h; this file
aa3378df 65 * is only intended for including from ttymodes.c.
5260325f 66 */
8efc0c15 67
2f778758 68/* termios macro */
8efc0c15 69/* name, op */
2f778758 70TTYCHAR(VINTR, 1)
71TTYCHAR(VQUIT, 2)
72TTYCHAR(VERASE, 3)
8efc0c15 73#if defined(VKILL)
2f778758 74TTYCHAR(VKILL, 4)
aa3378df 75#endif /* VKILL */
2f778758 76TTYCHAR(VEOF, 5)
8efc0c15 77#if defined(VEOL)
2f778758 78TTYCHAR(VEOL, 6)
aa3378df 79#endif /* VEOL */
2f778758 80#ifdef VEOL2
8efc0c15 81TTYCHAR(VEOL2, 7)
aa3378df 82#endif /* VEOL2 */
2f778758 83TTYCHAR(VSTART, 8)
84TTYCHAR(VSTOP, 9)
8efc0c15 85#if defined(VSUSP)
2f778758 86TTYCHAR(VSUSP, 10)
aa3378df 87#endif /* VSUSP */
8efc0c15 88#if defined(VDSUSP)
2f778758 89TTYCHAR(VDSUSP, 11)
aa3378df 90#endif /* VDSUSP */
8efc0c15 91#if defined(VREPRINT)
2f778758 92TTYCHAR(VREPRINT, 12)
aa3378df 93#endif /* VREPRINT */
8efc0c15 94#if defined(VWERASE)
2f778758 95TTYCHAR(VWERASE, 13)
aa3378df 96#endif /* VWERASE */
8efc0c15 97#if defined(VLNEXT)
2f778758 98TTYCHAR(VLNEXT, 14)
aa3378df 99#endif /* VLNEXT */
8efc0c15 100#if defined(VFLUSH)
2f778758 101TTYCHAR(VFLUSH, 15)
aa3378df 102#endif /* VFLUSH */
8efc0c15 103#ifdef VSWTCH
2f778758 104TTYCHAR(VSWTCH, 16)
aa3378df 105#endif /* VSWTCH */
8efc0c15 106#if defined(VSTATUS)
2f778758 107TTYCHAR(VSTATUS, 17)
aa3378df 108#endif /* VSTATUS */
8efc0c15 109#ifdef VDISCARD
2f778758 110TTYCHAR(VDISCARD, 18)
aa3378df 111#endif /* VDISCARD */
8efc0c15 112
113/* name, field, op */
2f778758 114TTYMODE(IGNPAR, c_iflag, 30)
115TTYMODE(PARMRK, c_iflag, 31)
f2107e97 116TTYMODE(INPCK, c_iflag, 32)
2f778758 117TTYMODE(ISTRIP, c_iflag, 33)
f2107e97 118TTYMODE(INLCR, c_iflag, 34)
119TTYMODE(IGNCR, c_iflag, 35)
120TTYMODE(ICRNL, c_iflag, 36)
8efc0c15 121#if defined(IUCLC)
f2107e97 122TTYMODE(IUCLC, c_iflag, 37)
8efc0c15 123#endif
f2107e97 124TTYMODE(IXON, c_iflag, 38)
125TTYMODE(IXANY, c_iflag, 39)
126TTYMODE(IXOFF, c_iflag, 40)
8efc0c15 127#ifdef IMAXBEL
2f778758 128TTYMODE(IMAXBEL,c_iflag, 41)
aa3378df 129#endif /* IMAXBEL */
8efc0c15 130
2f778758 131TTYMODE(ISIG, c_lflag, 50)
132TTYMODE(ICANON, c_lflag, 51)
8efc0c15 133#ifdef XCASE
2f778758 134TTYMODE(XCASE, c_lflag, 52)
8efc0c15 135#endif
2f778758 136TTYMODE(ECHO, c_lflag, 53)
137TTYMODE(ECHOE, c_lflag, 54)
138TTYMODE(ECHOK, c_lflag, 55)
139TTYMODE(ECHONL, c_lflag, 56)
140TTYMODE(NOFLSH, c_lflag, 57)
141TTYMODE(TOSTOP, c_lflag, 58)
8efc0c15 142#ifdef IEXTEN
2f778758 143TTYMODE(IEXTEN, c_lflag, 59)
aa3378df 144#endif /* IEXTEN */
8efc0c15 145#if defined(ECHOCTL)
2f778758 146TTYMODE(ECHOCTL,c_lflag, 60)
aa3378df 147#endif /* ECHOCTL */
8efc0c15 148#ifdef ECHOKE
2f778758 149TTYMODE(ECHOKE, c_lflag, 61)
aa3378df 150#endif /* ECHOKE */
8efc0c15 151#if defined(PENDIN)
2f778758 152TTYMODE(PENDIN, c_lflag, 62)
aa3378df 153#endif /* PENDIN */
8efc0c15 154
2f778758 155TTYMODE(OPOST, c_oflag, 70)
8efc0c15 156#if defined(OLCUC)
2f778758 157TTYMODE(OLCUC, c_oflag, 71)
8efc0c15 158#endif
75136d8b 159#ifdef ONLCR
2f778758 160TTYMODE(ONLCR, c_oflag, 72)
75136d8b 161#endif
8efc0c15 162#ifdef OCRNL
2f778758 163TTYMODE(OCRNL, c_oflag, 73)
8efc0c15 164#endif
165#ifdef ONOCR
2f778758 166TTYMODE(ONOCR, c_oflag, 74)
8efc0c15 167#endif
168#ifdef ONLRET
2f778758 169TTYMODE(ONLRET, c_oflag, 75)
8efc0c15 170#endif
171
2f778758 172TTYMODE(CS7, c_cflag, 90)
173TTYMODE(CS8, c_cflag, 91)
174TTYMODE(PARENB, c_cflag, 92)
175TTYMODE(PARODD, c_cflag, 93)
This page took 0.35201 seconds and 5 git commands to generate.