Name Date Size #Lines LOC

..13-Oct-2023-

MakefileH A D08-May-2022867 3314

NEWSH A D08-May-20221.9 KiB6640

READMEH A D08-May-20221.6 KiB5637

TODOH A D08-May-20221.4 KiB3929

acu.cH A D08-May-20225.1 KiB187126

acucommon.cH A D08-May-20222.8 KiB10659

acucommon.hH A D08-May-2022199 86

cmds.cH A D08-May-202219.5 KiB1,029794

cmdtab.cH A D08-May-20222.5 KiB5420

cu.cH A D08-May-20223.4 KiB12879

dial.shH A D08-May-2022214 2211

hunt.cH A D08-May-20223 KiB10258

log.cH A D08-May-20222.5 KiB7736

modems.5H A D08-May-20224.7 KiB140139

partab.cH A D08-May-20222.4 KiB5418

pathnames.hH A D08-May-20222.2 KiB556

remote.cH A D08-May-20226.5 KiB274194

tip.1H A D08-May-202213.3 KiB496495

tip.cH A D08-May-202212.4 KiB622426

tip.hH A D08-May-202210.2 KiB379257

tipout.cH A D08-May-20224.4 KiB168103

tod.cH A D08-May-20222.4 KiB10860

tod.hH A D08-May-2022538 109

unidialer.cH A D08-May-202216.2 KiB772607

value.cH A D08-May-20226.6 KiB347262

vars.cH A D08-May-20224.4 KiB11275

README

1[See NEWS file for much more up-to-date information]
2
3Tip can be configured in a number of ways:
4
5ACU's:
6-----
7
8New ACU's may be added by editing the ACU description table
9in acutab.c and writing a ``driver''.
10
11ACU usage can be monitored by defining ACULOG in the makefile.
12If this is done and no phone numbers should appear in the
13log file, define PRISTINE in the makefile.
14
15Variables:
16---------
17
18Tip's internal workings revolve around a set of (possibly)
19user defined variables.  These are statically initialized
20in vars.c, and from the remote file.
21
22Note that adding or deleting variables requires tip to be completedly
23recompiled, as indexes into the variable table are used to avoid
24expensive lookups.  These defines are set in tip.h.
25
26Commands:
27--------
28
29The command dispatch table is defined in cmdtab.c.  Commands
30may have attributes such as EXPerimental and PRIVileged (only
31root may execute).
32
33
34
35--------------------------------------------------------------------------
36
37Recent changes about Jan 82
38
39A new, improved version of tip is now available.  The most important
40addition is the capacility to specify a phone number with tip.  The
41default baud rate is 1200.  To use it do:
42
43	tip phone-number
44or
45	tip -300 phone-number
46
47for 300 baud.
48
49A ~^Z command has been added to tip as well.
50
51A new cu program is available that interfaces to the tip program.
52It attempts to give the same user interface as cu but it is really
53the tip program so you have all the advantages of tip.  This allows
54cu (actually tip) to search for a free ACU instead of having the
55user specify which one he wants.
56