Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.bin / tip / tip / tipconf.h
1 /*
2  * Copyright (c) 1989, 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  *      @(#)tipconf.h   8.1 (Berkeley) 3/25/95
34  */
35
36 #ifndef tipconf_h_included
37 #define tipconf_h_included
38
39 /*
40         Define constness
41 */
42 #define CONST const
43
44 /*
45         Specify default bit rate for connections
46 */
47 #define DEFBR 1200
48
49 /*
50         Default frame size for file transfer buffering of writes
51         on local side
52 */
53 #ifndef BUFSIZ
54 #define DEFFS 1024
55 #else
56 #define DEFFS BUFSIZ
57 #endif
58
59 /*
60         Enable logging of ACU use
61 */
62 #define ACULOG             1
63
64 /*
65         Strip phone #s from ACU log file
66 */
67 #define PRISTINE           1
68
69 /*
70         Enable command to "connect" remote with local process
71 */
72 #define CONNECT            1
73
74 /*
75         Specify style of UUCP lock files
76 */
77 #define HAVE_V2_LOCKFILES  0
78 #define HAVE_HDB_LOCKFILES 1
79
80 /*
81         System has a millisecond based sleep function
82 */
83 #define HAVE_USLEEP        0
84
85 /*
86         System has select
87 */
88 #define HAVE_SELECT        1
89
90 /*
91         System has termios tty interface
92 */
93 #define HAVE_TERMIOS       1
94
95 /*
96         Include configurable modem driver
97 */
98 #define UNIDIALER          1
99
100 /*
101         Specify builtin modem drivers to include
102 */
103 #define BIZ1031            0
104 #define BIZ1022            0
105 #define COURIER            0
106 #define DF02               0
107 #define DF03               0
108 #define DN11               0
109 #define HAYES              0
110 #define MULTITECH          0
111 #define T3000              0
112 #define V3451              0
113 #define V831               0
114 #define VENTEL             0
115
116 /*
117         Include cu interface so that, when tip is linked to cu and then
118         invoked as cu, it behaves like cu.
119 */
120 #define INCLUDE_CU_INTERFACE 0
121
122 #endif
123
124 /* end of tipconf.h */