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