Change the system name from 'FreeBSD' to 'DragonFly'. Additional commits
[dragonfly.git] / crypto / openssh / includes.h
1 /*      $OpenBSD: includes.h,v 1.17 2002/01/26 16:44:22 stevesk Exp $   */
2 /*      $FreeBSD: src/crypto/openssh/includes.h,v 1.2.2.7 2003/02/03 17:31:06 des Exp $ */
3 /*      $DragonFly: src/crypto/openssh/Attic/includes.h,v 1.2 2003/06/17 04:24:36 dillon Exp $  */
4
5 /*
6  * Author: Tatu Ylonen <ylo@cs.hut.fi>
7  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8  *                    All rights reserved
9  * This file includes most of the needed system headers.
10  *
11  * As far as I am concerned, the code I have written for this software
12  * can be used freely for any purpose.  Any derived versions of this
13  * software must be clearly marked as such, and if the derived work is
14  * incompatible with the protocol description in the RFC file, it must be
15  * called by a name other than "ssh" or "Secure Shell".
16  */
17
18 #ifndef INCLUDES_H
19 #define INCLUDES_H
20
21 #define RCSID(msg) \
22 __RCSID(msg)
23
24 #include "config.h"
25
26 #include <stdio.h>
27 #include <ctype.h>
28 #include <errno.h>
29 #include <fcntl.h> /* For O_NONBLOCK */
30 #include <signal.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <stdarg.h>
34 #include <pwd.h>
35 #include <grp.h>
36 #include <time.h>
37 #include <dirent.h>
38
39 #ifdef HAVE_LIMITS_H
40 # include <limits.h> /* For PATH_MAX */
41 #endif
42 #ifdef HAVE_GETOPT_H
43 # include <getopt.h>
44 #endif
45 #ifdef HAVE_BSTRING_H
46 # include <bstring.h>
47 #endif
48 #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
49     defined(GLOB_HAS_GL_MATCHC)
50 # include <glob.h>
51 #endif
52 #ifdef HAVE_NETGROUP_H
53 # include <netgroup.h>
54 #endif
55 #if defined(HAVE_NETDB_H)
56 # include <netdb.h>
57 #endif
58 #ifdef HAVE_ENDIAN_H
59 # include <endian.h>
60 #endif
61 #ifdef HAVE_TTYENT_H
62 # include <ttyent.h>
63 #endif
64 #ifdef HAVE_UTIME_H
65 # include <utime.h>
66 #endif
67 #ifdef HAVE_MAILLOCK_H
68 # include <maillock.h> /* For _PATH_MAILDIR */
69 #endif
70 #ifdef HAVE_NEXT
71 #  include <libc.h>
72 #endif
73 #include <unistd.h> /* For STDIN_FILENO, etc */
74 #include <termios.h> /* Struct winsize */
75
76 /*
77  *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
78  */
79 #ifdef HAVE_STRINGS_H
80 # include <strings.h>
81 #endif
82 #ifdef HAVE_LOGIN_H
83 # include <login.h>
84 #endif
85
86 #ifdef HAVE_UTMP_H
87 #  include <utmp.h>
88 #endif
89 #ifdef HAVE_UTMPX_H
90 #  ifdef HAVE_TV_IN_UTMPX
91 #    include <sys/time.h>
92 #  endif
93 #  include <utmpx.h>
94 #endif
95 #ifdef HAVE_LASTLOG_H
96 #  include <lastlog.h>
97 #endif
98 #ifdef HAVE_PATHS_H
99 #  include <paths.h> /* For _PATH_XXX */
100 #endif
101
102 #include <sys/types.h>
103 #include <sys/socket.h>
104 #include <sys/ioctl.h>
105 #include <sys/wait.h>
106 #ifdef HAVE_SYS_TIME_H
107 # include <sys/time.h> /* For timersub */
108 #endif
109 #include <sys/resource.h>
110 #ifdef HAVE_SYS_SELECT_H
111 # include <sys/select.h>
112 #endif
113 #ifdef HAVE_SYS_BSDTTY_H
114 # include <sys/bsdtty.h>
115 #endif
116 #include <sys/param.h> /* For MAXPATHLEN and roundup() */
117 #ifdef HAVE_SYS_UN_H
118 # include <sys/un.h> /* For sockaddr_un */
119 #endif
120 #ifdef HAVE_STDINT_H
121 # include <stdint.h>
122 #endif
123 #ifdef HAVE_SYS_BITYPES_H
124 # include <sys/bitypes.h> /* For u_intXX_t */
125 #endif
126 #ifdef HAVE_SYS_CDEFS_H
127 # include <sys/cdefs.h> /* For __P() */
128 #endif
129 #ifdef HAVE_SYS_STAT_H
130 # include <sys/stat.h> /* For S_* constants and macros */
131 #endif
132 #ifdef HAVE_SYS_SYSMACROS_H
133 # include <sys/sysmacros.h> /* For MIN, MAX, etc */
134 #endif
135 #ifdef HAVE_SYS_MMAN_H
136 #include <sys/mman.h> /* for MAP_ANONYMOUS */
137 #endif
138
139 #include <netinet/in_systm.h> /* For typedefs */
140 #include <netinet/in.h> /* For IPv6 macros */
141 #include <netinet/ip.h> /* For IPTOS macros */
142 #include <netinet/tcp.h>
143 #include <arpa/inet.h>
144 #ifdef HAVE_RPC_TYPES_H
145 # include <rpc/types.h> /* For INADDR_LOOPBACK */
146 #endif
147 #ifdef USE_PAM
148 # include <security/pam_appl.h>
149 #endif
150 #ifdef HAVE_READPASSPHRASE_H
151 # include <readpassphrase.h>
152 #endif
153
154 #ifdef HAVE_IA_H
155 # include <ia.h>
156 #endif
157
158 #ifdef HAVE_TMPDIR_H
159 # include <tmpdir.h>
160 #endif
161
162 #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
163
164 #include "defines.h"
165
166 #include "version.h"
167 #include "openbsd-compat/openbsd-compat.h"
168 #include "openbsd-compat/bsd-cygwin_util.h"
169 #include "openbsd-compat/bsd-nextstep.h"
170
171 #include "entropy.h"
172
173 #endif /* INCLUDES_H */