vars.c revision 88276
1/*	$OpenBSD: vars.c,v 1.2 1996/06/26 05:40:50 deraadt Exp $	*/
2/*	$NetBSD: vars.c,v 1.3 1994/12/08 09:31:19 jtc Exp $	*/
3
4/*
5 * Copyright (c) 1983, 1993
6 *	The Regents of the University of California.  All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 *    must display the following acknowledgement:
18 *	This product includes software developed by the University of
19 *	California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 *    may be used to endorse or promote products derived from this software
22 *    without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/usr.bin/tip/tip/vars.c 88276 2001-12-20 14:25:46Z markm $");
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)vars.c	8.1 (Berkeley) 6/6/93";
43static char rcsid[] = "$OpenBSD: vars.c,v 1.2 1996/06/26 05:40:50 deraadt Exp $";
44#endif
45#endif /* not lint */
46
47#include "tip.h"
48#include "pathnames.h"
49
50/*
51 * Definition of variables
52 */
53value_t vtable[] = {
54	{ "beautify",	BOOL,			(READ|WRITE)<<PUBLIC,
55	  "be",		(char *)TRUE },
56	{ "baudrate",	NUMBER|IREMOTE|INIT,	(READ<<PUBLIC)|(WRITE<<ROOT),
57	  "ba",		(char *)&BR },
58	{ "dialtimeout",NUMBER,			(READ<<PUBLIC)|(WRITE<<ROOT),
59	  "dial",	(char *)60 },
60	{ "eofread",	STRING|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
61	  "eofr",	(char *)&IE },
62	{ "eofwrite",	STRING|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
63	  "eofw",	(char *)&OE },
64	{ "eol",	STRING|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
65	  NOSTR,	(char *)&EL },
66	{ "escape",	CHAR,			(READ|WRITE)<<PUBLIC,
67	  "es",		(char *)'~' },
68	{ "exceptions",	STRING|INIT|IREMOTE,	(READ|WRITE)<<PUBLIC,
69	  "ex",		(char *)&EX },
70	{ "force",	CHAR,			(READ|WRITE)<<PUBLIC,
71	  "fo",		(char *)CTRL('p') },
72	{ "framesize",	NUMBER|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
73	  "fr",		(char *)&FS },
74	{ "host",	STRING|IREMOTE|INIT,	READ<<PUBLIC,
75	  "ho",		(char *)&HO },
76	{ "log",	STRING|INIT,		(READ|WRITE)<<ROOT,
77	  NOSTR,	_PATH_ACULOG },
78	{ "phones",	STRING|INIT|IREMOTE,	READ<<PUBLIC,
79	  NOSTR,	(char *)&PH },
80	{ "prompt",	CHAR,			(READ|WRITE)<<PUBLIC,
81	  "pr",		(char *)'\n' },
82	{ "raise",	BOOL,			(READ|WRITE)<<PUBLIC,
83	  "ra",		(char *)FALSE },
84	{ "raisechar",	CHAR,			(READ|WRITE)<<PUBLIC,
85	  "rc",		(char *)CTRL('a') },
86	{ "record",	STRING|INIT|IREMOTE,	(READ|WRITE)<<PUBLIC,
87	  "rec",	(char *)&RE },
88	{ "remote",	STRING|INIT|IREMOTE,	READ<<PUBLIC,
89	  NOSTR,	(char *)&RM },
90	{ "script",	BOOL,			(READ|WRITE)<<PUBLIC,
91	  "sc",		(char *)FALSE },
92	{ "tabexpand",	BOOL,			(READ|WRITE)<<PUBLIC,
93	  "tab",	(char *)FALSE },
94	{ "verbose",	BOOL,			(READ|WRITE)<<PUBLIC,
95	  "verb",	(char *)TRUE },
96	{ "SHELL",	STRING|ENVIRON|INIT,	(READ|WRITE)<<PUBLIC,
97	  NULL,		_PATH_BSHELL },
98	{ "HOME",	STRING|ENVIRON,		(READ|WRITE)<<PUBLIC,
99	  NOSTR,	NOSTR },
100	{ "echocheck",	BOOL,			(READ|WRITE)<<PUBLIC,
101	  "ec",		(char *)FALSE },
102	{ "disconnect",	STRING|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
103	  "di",		(char *)&DI },
104	{ "tandem",	BOOL,			(READ|WRITE)<<PUBLIC,
105	  "ta",		(char *)TRUE },
106	{ "linedelay",	NUMBER|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
107	  "ldelay",	(char *)&DL },
108	{ "chardelay",	NUMBER|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
109	  "cdelay",	(char *)&CL },
110	{ "etimeout",	NUMBER|IREMOTE|INIT,	(READ|WRITE)<<PUBLIC,
111	  "et",		(char *)&ET },
112	{ "rawftp",	BOOL,			(READ|WRITE)<<PUBLIC,
113	  "raw",	(char *)FALSE },
114	{ "halfduplex",	BOOL,			(READ|WRITE)<<PUBLIC,
115	  "hdx",	(char *)FALSE },
116	{ "localecho",	BOOL,			(READ|WRITE)<<PUBLIC,
117	  "le",		(char *)FALSE },
118	{ "parity",	STRING|INIT|IREMOTE,	(READ|WRITE)<<PUBLIC,
119	  "par",	(char *)&PA },
120	{ NOSTR, NULL, NULL, NOSTR, NOSTR }
121};
122