Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
aculib/ | H | - | - | 2,517 | 1,758 | |
Makefile | H A D | 14-Apr-2009 | 1.4 KiB | 50 | 12 | |
README | H A D | 03-Apr-2006 | 1.5 KiB | 58 | 40 | |
TODO | H A D | 08-Dec-1994 | 720 | 19 | 13 | |
acu.c | H A D | 11-Sep-2021 | 4.8 KiB | 191 | 125 | |
acutab.c | H A D | 07-Aug-2003 | 2.9 KiB | 86 | 52 | |
cmds.c | H A D | 12-Jul-2014 | 19.1 KiB | 930 | 702 | |
cmdtab.c | H A D | 22-Oct-2006 | 2.7 KiB | 62 | 28 | |
cu.c | H A D | 03-Nov-2024 | 7.5 KiB | 311 | 246 | |
hunt.c | H A D | 06-Sep-2011 | 3 KiB | 102 | 54 | |
partab.c | H A D | 07-Aug-2003 | 2.5 KiB | 61 | 25 | |
pathnames.h | H A D | 03-Apr-2006 | 1.8 KiB | 38 | 3 | |
remote.c | H A D | 20-Sep-2024 | 5.6 KiB | 230 | 165 | |
tip.1 | H A D | 25-Apr-2023 | 13.7 KiB | 558 | 557 | |
tip.c | H A D | 23-Apr-2020 | 13 KiB | 647 | 453 | |
tip.h | H A D | 22-May-2022 | 10.1 KiB | 336 | 237 | |
tipout.c | H A D | 06-Sep-2011 | 4.7 KiB | 188 | 119 | |
value.c | H A D | 21-Oct-2013 | 6.8 KiB | 345 | 262 | |
vars.c | H A D | 03-Apr-2006 | 4.3 KiB | 116 | 79 |
README
1Tip can be configured in a number of ways: 2 3ACU's: 4----- 5 6ACU Define in makefile 7-------------------- --------------- 8BIZCOMP 1022, 1031 BIZ1022, BIZ1031 9DEC DF02-AC, DF03-AC DF02, DF03 10DEC DN-11/Able Quadracall DN11 11Ventel VENTEL 12Vadic 831 V831 13 14New ACU's may be added by editing the ACU description table 15in acutab.c and writing a ``driver''. 16 17Variables: 18--------- 19 20Tip's internal workings revolve around a set of (possibly) 21user defined variables. These are statically initialized 22in vars.c, and from the remote file. 23 24Note that adding or deleting variables requires tip to be completedly 25recompiled, as indexes into the variable table are used to avoid 26expensive lookups. These defines are set in tip.h. 27 28Commands: 29-------- 30 31The command dispatch table is defined in cmdtab.c. Commands 32may have attributes such as EXPerimental and PRIVileged (only 33root may execute). 34 35 36 37-------------------------------------------------------------------------- 38 39Recent changes about Jan 82 40 41A new, improved version of tip is now available. The most important 42addition is the capacility to specify a phone number with tip. The 43default baud rate is 1200. To use it do: 44 45 tip phone-number 46or 47 tip -300 phone-number 48 49for 300 baud. 50 51A ~^Z command has been added to tip as well. 52 53A new cu program is available that interfaces to the tip program. 54It attempts to give the same user interface as cu but it is really 55the tip program so you have all the advantages of tip. This allows 56cu (actually tip) to search for a free ACU instead of having the 57user specify which one he wants. 58