]> andersk Git - openssh.git/blob - includes.h
- stevesk@cvs.openbsd.org 2006/07/09 15:15:11
[openssh.git] / includes.h
1 /* $OpenBSD: includes.h,v 1.47 2006/07/09 15:15:10 stevesk Exp $ */
2
3 /*
4  * Author: Tatu Ylonen <ylo@cs.hut.fi>
5  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6  *                    All rights reserved
7  * This file includes most of the needed system headers.
8  *
9  * As far as I am concerned, the code I have written for this software
10  * can be used freely for any purpose.  Any derived versions of this
11  * software must be clearly marked as such, and if the derived work is
12  * incompatible with the protocol description in the RFC file, it must be
13  * called by a name other than "ssh" or "Secure Shell".
14  */
15
16 #ifndef INCLUDES_H
17 #define INCLUDES_H
18
19 #include "config.h"
20
21 #define _GNU_SOURCE /* activate extra prototypes for glibc */
22
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <errno.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <stdarg.h>
29 #include <time.h>
30 #include <stddef.h>
31
32 #ifdef HAVE_LIMITS_H
33 # include <limits.h> /* For PATH_MAX */
34 #endif
35 #ifdef HAVE_GETOPT_H
36 # include <getopt.h>
37 #endif
38 #ifdef HAVE_BSTRING_H
39 # include <bstring.h>
40 #endif
41 #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
42     defined(GLOB_HAS_GL_MATCHC)
43 # include <glob.h>
44 #endif
45 #ifdef HAVE_ENDIAN_H
46 # include <endian.h>
47 #endif
48 #ifdef HAVE_TTYENT_H
49 # include <ttyent.h>
50 #endif
51 #ifdef HAVE_UTIME_H
52 # include <utime.h>
53 #endif
54 #ifdef HAVE_MAILLOCK_H
55 # include <maillock.h> /* For _PATH_MAILDIR */
56 #endif
57 #ifdef HAVE_NEXT
58 # include <libc.h>
59 #endif
60 #ifdef HAVE_PATHS
61 # include <paths.h>
62 #endif
63 #include <unistd.h> /* For STDIN_FILENO, etc */
64
65 /*
66  *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
67  */
68 #ifdef HAVE_STRINGS_H
69 # include <strings.h>
70 #endif
71 #ifdef HAVE_LOGIN_H
72 # include <login.h>
73 #endif
74
75 #ifdef HAVE_UTMP_H
76 #  include <utmp.h>
77 #endif
78 #ifdef HAVE_UTMPX_H
79 #  ifdef HAVE_TV_IN_UTMPX
80 #    include <sys/time.h>
81 #  endif
82 #  include <utmpx.h>
83 #endif
84 #ifdef HAVE_LASTLOG_H
85 #  include <lastlog.h>
86 #endif
87
88 #include <sys/types.h>
89 #ifdef HAVE_SYS_TIME_H
90 # include <sys/time.h> /* For timersub */
91 #endif
92 #ifdef HAVE_SYS_SELECT_H
93 # include <sys/select.h>
94 #endif
95 #ifdef HAVE_SYS_BSDTTY_H
96 # include <sys/bsdtty.h>
97 #endif
98 #include <sys/param.h> /* For MAXPATHLEN and roundup() */
99 #ifdef HAVE_STDINT_H
100 # include <stdint.h>
101 #endif
102 #include <termios.h>
103 #ifdef HAVE_SYS_BITYPES_H
104 # include <sys/bitypes.h> /* For u_intXX_t */
105 #endif
106 #ifdef HAVE_SYS_CDEFS_H
107 # include <sys/cdefs.h> /* For __P() */
108 #endif
109 #ifdef HAVE_SYS_STAT_H
110 # include <sys/stat.h> /* For S_* constants and macros */
111 #endif
112 #ifdef HAVE_SYS_SYSMACROS_H
113 # include <sys/sysmacros.h> /* For MIN, MAX, etc */
114 #endif
115 #ifdef HAVE_SYS_MMAN_H
116 #include <sys/mman.h> /* for MAP_ANONYMOUS */
117 #endif
118 #ifdef HAVE_SYS_STRTIO_H
119 #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
120 #endif
121 #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
122 # if defined(HAVE_SYS_STREAM_H)
123 #  include <sys/stream.h>       /* reqd for queue_t on Solaris 2.5.1 */
124 # endif
125 #include <sys/ptms.h>   /* for grantpt() and friends */
126 #endif
127
128 #include <netinet/in_systm.h> /* For typedefs */
129 #if defined(HAVE_NETDB_H)
130 # include <netdb.h>
131 #endif
132 #ifdef HAVE_RPC_TYPES_H
133 # include <rpc/types.h> /* For INADDR_LOOPBACK */
134 #endif
135 #ifdef USE_PAM
136 #if defined(HAVE_SECURITY_PAM_APPL_H)
137 # include <security/pam_appl.h>
138 #elif defined (HAVE_PAM_PAM_APPL_H)
139 # include <pam/pam_appl.h>
140 #endif
141 #endif
142 #ifdef HAVE_READPASSPHRASE_H
143 # include <readpassphrase.h>
144 #endif
145
146 #ifdef HAVE_IA_H
147 # include <ia.h>
148 #endif
149
150 #ifdef HAVE_IAF_H
151 # include <iaf.h>
152 #endif
153
154 #ifdef HAVE_TMPDIR_H
155 # include <tmpdir.h>
156 #endif
157
158 #ifdef HAVE_LIBUTIL_H
159 # include <libutil.h> /* Openpty on FreeBSD at least */
160 #endif
161
162 #if defined(KRB5) && defined(USE_AFS)
163 # include <krb5.h>
164 # include <kafs.h>
165 #endif
166
167 #if defined(HAVE_SYS_SYSLOG_H)
168 # include <sys/syslog.h>
169 #endif
170
171 /*
172  * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
173  * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
174  */
175 #ifdef GETSPNAM_CONFLICTING_DEFS
176 # ifdef _INCLUDE__STDC__
177 #  undef _INCLUDE__STDC__
178 # endif
179 #endif
180
181 #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
182
183 #include "defines.h"
184
185 #include "openbsd-compat/openbsd-compat.h"
186 #include "openbsd-compat/bsd-nextstep.h"
187
188 #include "entropy.h"
189
190 #endif /* INCLUDES_H */
This page took 0.11542 seconds and 5 git commands to generate.