]> andersk Git - openssh.git/blame - ttymodes.h
- markus@cvs.openbsd.org 2001/04/14 16:27:57
[openssh.git] / ttymodes.h
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * SGTTY stuff contributed by Janne Snabb <snabb@niksula.hut.fi>
5260325f 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6ae2364d 6 *
bcbf86ec 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".
5260325f 12 */
8efc0c15 13
2f778758 14/* RCSID("$OpenBSD: ttymodes.h,v 1.10 2001/03/10 15:02:05 stevesk Exp $"); */
8efc0c15 15
16/* The tty mode description is a stream of bytes. The stream consists of
5260325f 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 */
8efc0c15 28
5260325f 29/*
30 * Some constants and prototypes are defined in packet.h; this file
aa3378df 31 * is only intended for including from ttymodes.c.
5260325f 32 */
8efc0c15 33
2f778758 34/* termios macro */
8efc0c15 35/* name, op */
2f778758 36TTYCHAR(VINTR, 1)
37TTYCHAR(VQUIT, 2)
38TTYCHAR(VERASE, 3)
8efc0c15 39#if defined(VKILL)
2f778758 40TTYCHAR(VKILL, 4)
aa3378df 41#endif /* VKILL */
2f778758 42TTYCHAR(VEOF, 5)
8efc0c15 43#if defined(VEOL)
2f778758 44TTYCHAR(VEOL, 6)
aa3378df 45#endif /* VEOL */
2f778758 46#ifdef VEOL2
8efc0c15 47TTYCHAR(VEOL2, 7)
aa3378df 48#endif /* VEOL2 */
2f778758 49TTYCHAR(VSTART, 8)
50TTYCHAR(VSTOP, 9)
8efc0c15 51#if defined(VSUSP)
2f778758 52TTYCHAR(VSUSP, 10)
aa3378df 53#endif /* VSUSP */
8efc0c15 54#if defined(VDSUSP)
2f778758 55TTYCHAR(VDSUSP, 11)
aa3378df 56#endif /* VDSUSP */
8efc0c15 57#if defined(VREPRINT)
2f778758 58TTYCHAR(VREPRINT, 12)
aa3378df 59#endif /* VREPRINT */
8efc0c15 60#if defined(VWERASE)
2f778758 61TTYCHAR(VWERASE, 13)
aa3378df 62#endif /* VWERASE */
8efc0c15 63#if defined(VLNEXT)
2f778758 64TTYCHAR(VLNEXT, 14)
aa3378df 65#endif /* VLNEXT */
8efc0c15 66#if defined(VFLUSH)
2f778758 67TTYCHAR(VFLUSH, 15)
aa3378df 68#endif /* VFLUSH */
8efc0c15 69#ifdef VSWTCH
2f778758 70TTYCHAR(VSWTCH, 16)
aa3378df 71#endif /* VSWTCH */
8efc0c15 72#if defined(VSTATUS)
2f778758 73TTYCHAR(VSTATUS, 17)
aa3378df 74#endif /* VSTATUS */
8efc0c15 75#ifdef VDISCARD
2f778758 76TTYCHAR(VDISCARD, 18)
aa3378df 77#endif /* VDISCARD */
8efc0c15 78
79/* name, field, op */
2f778758 80TTYMODE(IGNPAR, c_iflag, 30)
81TTYMODE(PARMRK, c_iflag, 31)
82TTYMODE(INPCK, c_iflag, 32)
83TTYMODE(ISTRIP, c_iflag, 33)
84TTYMODE(INLCR, c_iflag, 34)
85TTYMODE(IGNCR, c_iflag, 35)
86TTYMODE(ICRNL, c_iflag, 36)
8efc0c15 87#if defined(IUCLC)
2f778758 88TTYMODE(IUCLC, c_iflag, 37)
8efc0c15 89#endif
2f778758 90TTYMODE(IXON, c_iflag, 38)
91TTYMODE(IXANY, c_iflag, 39)
92TTYMODE(IXOFF, c_iflag, 40)
8efc0c15 93#ifdef IMAXBEL
2f778758 94TTYMODE(IMAXBEL,c_iflag, 41)
aa3378df 95#endif /* IMAXBEL */
8efc0c15 96
2f778758 97TTYMODE(ISIG, c_lflag, 50)
98TTYMODE(ICANON, c_lflag, 51)
8efc0c15 99#ifdef XCASE
2f778758 100TTYMODE(XCASE, c_lflag, 52)
8efc0c15 101#endif
2f778758 102TTYMODE(ECHO, c_lflag, 53)
103TTYMODE(ECHOE, c_lflag, 54)
104TTYMODE(ECHOK, c_lflag, 55)
105TTYMODE(ECHONL, c_lflag, 56)
106TTYMODE(NOFLSH, c_lflag, 57)
107TTYMODE(TOSTOP, c_lflag, 58)
8efc0c15 108#ifdef IEXTEN
2f778758 109TTYMODE(IEXTEN, c_lflag, 59)
aa3378df 110#endif /* IEXTEN */
8efc0c15 111#if defined(ECHOCTL)
2f778758 112TTYMODE(ECHOCTL,c_lflag, 60)
aa3378df 113#endif /* ECHOCTL */
8efc0c15 114#ifdef ECHOKE
2f778758 115TTYMODE(ECHOKE, c_lflag, 61)
aa3378df 116#endif /* ECHOKE */
8efc0c15 117#if defined(PENDIN)
2f778758 118TTYMODE(PENDIN, c_lflag, 62)
aa3378df 119#endif /* PENDIN */
8efc0c15 120
2f778758 121TTYMODE(OPOST, c_oflag, 70)
8efc0c15 122#if defined(OLCUC)
2f778758 123TTYMODE(OLCUC, c_oflag, 71)
8efc0c15 124#endif
2f778758 125TTYMODE(ONLCR, c_oflag, 72)
8efc0c15 126#ifdef OCRNL
2f778758 127TTYMODE(OCRNL, c_oflag, 73)
8efc0c15 128#endif
129#ifdef ONOCR
2f778758 130TTYMODE(ONOCR, c_oflag, 74)
8efc0c15 131#endif
132#ifdef ONLRET
2f778758 133TTYMODE(ONLRET, c_oflag, 75)
8efc0c15 134#endif
135
2f778758 136TTYMODE(CS7, c_cflag, 90)
137TTYMODE(CS8, c_cflag, 91)
138TTYMODE(PARENB, c_cflag, 92)
139TTYMODE(PARODD, c_cflag, 93)
This page took 0.394767 seconds and 5 git commands to generate.