Home | History | Annotate | Line # | Download | only in getty
init.c revision 1.6
      1 /*
      2  * Copyright (c) 1983, 1993
      3  *	The Regents of the University of California.  All rights reserved.
      4  *
      5  * Redistribution and use in source and binary forms, with or without
      6  * modification, are permitted provided that the following conditions
      7  * are met:
      8  * 1. Redistributions of source code must retain the above copyright
      9  *    notice, this list of conditions and the following disclaimer.
     10  * 2. Redistributions in binary form must reproduce the above copyright
     11  *    notice, this list of conditions and the following disclaimer in the
     12  *    documentation and/or other materials provided with the distribution.
     13  * 3. All advertising materials mentioning features or use of this software
     14  *    must display the following acknowledgement:
     15  *	This product includes software developed by the University of
     16  *	California, Berkeley and its contributors.
     17  * 4. Neither the name of the University nor the names of its contributors
     18  *    may be used to endorse or promote products derived from this software
     19  *    without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  * SUCH DAMAGE.
     32  */
     33 
     34 #ifndef lint
     35 /*static char sccsid[] = "from: @(#)init.c	8.1 (Berkeley) 6/4/93";*/
     36 static char rcsid[] = "$Id: init.c,v 1.6 1994/08/17 20:10:35 pk Exp $";
     37 #endif /* not lint */
     38 
     39 /*
     40  * Getty table initializations.
     41  *
     42  * Melbourne getty.
     43  */
     44 #include <termios.h>
     45 #include "gettytab.h"
     46 #include "pathnames.h"
     47 
     48 extern	struct termios tmode;
     49 extern	char hostname[];
     50 
     51 struct	gettystrs gettystrs[] = {
     52 	{ "nx" },			/* next table */
     53 	{ "cl" },			/* screen clear characters */
     54 	{ "im" },			/* initial message */
     55 	{ "lm", "login: " },		/* login message */
     56 	{ "er", &tmode.c_cc[VERASE] },	/* erase character */
     57 	{ "kl", &tmode.c_cc[VKILL] },	/* kill character */
     58 	{ "et", &tmode.c_cc[VEOF] },	/* eof chatacter (eot) */
     59 	{ "pc", "" },			/* pad character */
     60 	{ "tt" },			/* terminal type */
     61 	{ "ev" },			/* enviroment */
     62 	{ "lo", _PATH_LOGIN },		/* login program */
     63 	{ "hn", hostname },		/* host name */
     64 	{ "he" },			/* host name edit */
     65 	{ "in", &tmode.c_cc[VINTR] },	/* interrupt char */
     66 	{ "qu", &tmode.c_cc[VQUIT] },	/* quit char */
     67 	{ "xn", &tmode.c_cc[VSTART] },	/* XON (start) char */
     68 	{ "xf", &tmode.c_cc[VSTOP] },	/* XOFF (stop) char */
     69 	{ "bk", &tmode.c_cc[VEOL] },	/* brk char (alt \n) */
     70 	{ "su", &tmode.c_cc[VSUSP] },	/* suspend char */
     71 	{ "ds", &tmode.c_cc[VDSUSP] },	/* delayed suspend */
     72 	{ "rp", &tmode.c_cc[VREPRINT] },/* reprint char */
     73 	{ "fl", &tmode.c_cc[VDISCARD] },/* flush output */
     74 	{ "we", &tmode.c_cc[VWERASE] },	/* word erase */
     75 	{ "ln", &tmode.c_cc[VLNEXT] },	/* literal next */
     76 	{ 0 }
     77 };
     78 
     79 struct	gettynums gettynums[] = {
     80 	{ "is" },			/* input speed */
     81 	{ "os" },			/* output speed */
     82 	{ "sp" },			/* both speeds */
     83 	{ "nd" },			/* newline delay */
     84 	{ "cd" },			/* carriage-return delay */
     85 	{ "td" },			/* tab delay */
     86 	{ "fd" },			/* form-feed delay */
     87 	{ "bd" },			/* backspace delay */
     88 	{ "to" },			/* timeout */
     89 	{ "f0" },			/* output flags */
     90 	{ "f1" },			/* input flags */
     91 	{ "f2" },			/* user mode flags */
     92 	{ "pf" },			/* delay before flush at 1st prompt */
     93 	{ "c0" },			/* output c_flags */
     94 	{ "c1" },			/* input c_flags */
     95 	{ "c2" },			/* user mode c_flags */
     96 	{ "i0" },			/* output i_flags */
     97 	{ "i1" },			/* input i_flags */
     98 	{ "i2" },			/* user mode i_flags */
     99 	{ "l0" },			/* output l_flags */
    100 	{ "l1" },			/* input l_flags */
    101 	{ "l2" },			/* user mode l_flags */
    102 	{ "o0" },			/* output o_flags */
    103 	{ "o1" },			/* input o_flags */
    104 	{ "o2" },			/* user mode o_flags */
    105 	{ 0 }
    106 };
    107 
    108 struct	gettyflags gettyflags[] = {
    109 	{ "ht",	0 },			/* has tabs */
    110 	{ "nl",	1 },			/* has newline char */
    111 	{ "ep",	0 },			/* even parity */
    112 	{ "op",	0 },			/* odd parity */
    113 	{ "ap",	0 },			/* any parity */
    114 	{ "ec",	1 },			/* no echo */
    115 	{ "co",	0 },			/* console special */
    116 	{ "cb",	0 },			/* crt backspace */
    117 	{ "ck",	0 },			/* crt kill */
    118 	{ "ce",	0 },			/* crt erase */
    119 	{ "pe",	0 },			/* printer erase */
    120 	{ "rw",	1 },			/* don't use raw */
    121 	{ "xc",	1 },			/* don't ^X ctl chars */
    122 	{ "lc",	0 },			/* terminal las lower case */
    123 	{ "uc",	0 },			/* terminal has no lower case */
    124 	{ "ig",	0 },			/* ignore garbage */
    125 	{ "ps",	0 },			/* do port selector speed select */
    126 	{ "hc",	1 },			/* don't set hangup on close */
    127 	{ "ub", 0 },			/* unbuffered output */
    128 	{ "ab", 0 },			/* auto-baud detect with '\r' */
    129 	{ "dx", 0 },			/* set decctlq */
    130 	{ "np", 0 },			/* no parity at all (8bit chars) */
    131 	{ "mb", 0 },			/* do MDMBUF flow control */
    132 	{ 0 }
    133 };
    134