📄 vars.c
字号:
#ifndef lintstatic char *sccsid = "@(#)vars.c 4.1 ULTRIX 7/17/90";#endif/************************************************************************ * * * Copyright (c) 1988 by * * Digital Equipment Corporation, Maynard, MA * * All rights reserved. * * * * This software is furnished under a license and may be used and * * copied only in accordance with the terms of such license and * * with the inclusion of the above copyright notice. This * * software or any other copies thereof may not be provided or * * otherwise made available to any other person. No title to and * * ownership of the software is hereby transferred. * * * * This software is derived from software received from the * * University of California, Berkeley, and from Bell * * Laboratories. Use, duplication, or disclosure is subject to * * restrictions under license agreements with University of * * California and with AT&T. * * * * The information in this software is subject to change without * * notice and should not be construed as a commitment by Digital * * Equipment Corporation. * * * * Digital assumes no responsibility for the use or reliability * * of its software on equipment which is not supplied by Digital. * * * ************************************************************************/#include "tip.h"/* * MODIFICATION HISTORY * * 13-Jun-1988 Randall Brown * Changed the baudrate variable in vtable so that the user * has both read and write access. * *//* * Definition of variables */value_t vtable[] = { { "beautify", BOOL, (READ|WRITE)<<PUBLIC, "be", (char *)TRUE }, { "baudrate", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "ba", (char *)&BR }, { "dialtimeout",NUMBER, (READ<<PUBLIC)|(WRITE<<ROOT), "dial", (char *)60 }, { "eofread", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "eofr", (char *)&IE }, { "eofwrite", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "eofw", (char *)&OE }, { "eol", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, NOSTR, (char *)&EL }, { "escape", CHAR, (READ|WRITE)<<PUBLIC, "es", (char *)'~' }, { "exceptions", STRING|INIT|IREMOTE, (READ|WRITE)<<PUBLIC, "ex", (char *)&EX }, { "force", CHAR, (READ|WRITE)<<PUBLIC, "fo", (char *)CTRL('p') }, { "framesize", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "fr", (char *)&FS }, { "host", STRING|IREMOTE|INIT, READ<<PUBLIC, "ho", (char *)&HO }, { "log", STRING|INIT, (READ|WRITE)<<ROOT, NOSTR, "/usr/adm/aculog" }, { "phones", STRING|INIT|IREMOTE, READ<<PUBLIC, NOSTR, (char *)&PH }, { "prompt", CHAR, (READ|WRITE)<<PUBLIC, "pr", (char *)'\n' }, { "raise", BOOL, (READ|WRITE)<<PUBLIC, "ra", (char *)FALSE }, { "raisechar", CHAR, (READ|WRITE)<<PUBLIC, "rc", (char *)CTRL('a') }, { "record", STRING|INIT|IREMOTE, (READ|WRITE)<<PUBLIC, "rec", (char *)&RE }, { "remote", STRING|INIT|IREMOTE, READ<<PUBLIC, NOSTR, (char *)&RM }, { "script", BOOL, (READ|WRITE)<<PUBLIC, "sc", (char *)FALSE }, { "tabexpand", BOOL, (READ|WRITE)<<PUBLIC, "tab", (char *)FALSE }, { "verbose", BOOL, (READ|WRITE)<<PUBLIC, "verb", (char *)TRUE }, { "SHELL", STRING|ENVIRON|INIT, (READ|WRITE)<<PUBLIC, NULL, "/bin/sh" }, { "HOME", STRING|ENVIRON, (READ|WRITE)<<PUBLIC, NOSTR, NOSTR }, { "echocheck", BOOL, (READ|WRITE)<<PUBLIC, "ec", (char *)FALSE }, { "disconnect", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "di", (char *)&DI }, { "tandem", BOOL, (READ|WRITE)<<PUBLIC, "ta", (char *)TRUE }, { "linedelay", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "ldelay", (char *)&DL }, { "chardelay", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "cdelay", (char *)&CL }, { "etimeout", NUMBER|IREMOTE|INIT, (READ|WRITE)<<PUBLIC, "et", (char *)&ET }, { "rawftp", BOOL, (READ|WRITE)<<PUBLIC, "raw", (char *)FALSE }, { "halfduplex", BOOL, (READ|WRITE)<<PUBLIC, "hdx", (char *)FALSE }, { "localecho", BOOL, (READ|WRITE)<<PUBLIC, "le", (char *)FALSE }, { "parity", STRING|INIT|IREMOTE, (READ|WRITE)<<PUBLIC, "par", (char *)&PA }, { "eightbit", BOOL, (READ|WRITE)<<PUBLIC, "eb", (char *)FALSE }, { NOSTR, NULL, NULL, NOSTR, NOSTR }};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -