]> andersk Git - openssh.git/blob - includes.h
- stevesk@cvs.openbsd.org 2006/07/08 21:47:12
[openssh.git] / includes.h
1 /* $OpenBSD: includes.h,v 1.46 2006/07/08 21:47:12 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 <fcntl.h> /* For O_NONBLOCK */
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdarg.h>
30 #include <time.h>
31 #include <stddef.h>
32
33 #ifdef HAVE_LIMITS_H
34 # include <limits.h> /* For PATH_MAX */
35 #endif
36 #ifdef HAVE_GETOPT_H
37 # include <getopt.h>
38 #endif
39 #ifdef HAVE_BSTRING_H
40 # include <bstring.h>
41 #endif
42 #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
43     defined(GLOB_HAS_GL_MATCHC)
44 # include <glob.h>
45 #endif
46 #ifdef HAVE_ENDIAN_H
47 # include <endian.h>
48 #endif
49 #ifdef HAVE_TTYENT_H
50 # include <ttyent.h>
51 #endif
52 #ifdef HAVE_UTIME_H
53 # include <utime.h>
54 #endif
55 #ifdef HAVE_MAILLOCK_H
56 # include <maillock.h> /* For _PATH_MAILDIR */
57 #endif
58 #ifdef HAVE_NEXT
59 # include <libc.h>
60 #endif
61 #ifdef HAVE_PATHS
62 # include <paths.h>
63 #endif
64 #include <unistd.h> /* For STDIN_FILENO, etc */
65
66 /*
67  *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
68  */
69 #ifdef HAVE_STRINGS_H
70 # include <strings.h>
71 #endif
72 #ifdef HAVE_LOGIN_H
73 # include <login.h>
74 #endif
75
76 #ifdef HAVE_UTMP_H
77 #  include <utmp.h>
78 #endif
79 #ifdef HAVE_UTMPX_H
80 #  ifdef HAVE_TV_IN_UTMPX
81 #    include <sys/time.h>
82 #  endif
83 #  include <utmpx.h>
84 #endif
85 #ifdef HAVE_LASTLOG_H
86 #  include <lastlog.h>
87 #endif
88
89 #include <sys/types.h>
90 #ifdef HAVE_SYS_TIME_H
91 # include <sys/time.h> /* For timersub */
92 #endif
93 #ifdef HAVE_SYS_SELECT_H
94 # include <sys/select.h>
95 #endif
96 #ifdef HAVE_SYS_BSDTTY_H
97 # include <sys/bsdtty.h>
98 #endif
99 #include <sys/param.h> /* For MAXPATHLEN and roundup() */
100 #ifdef HAVE_STDINT_H
101 # include <stdint.h>
102 #endif
103 #include <termios.h>
104 #ifdef HAVE_SYS_BITYPES_H
105 # include <sys/bitypes.h> /* For u_intXX_t */
106 #endif
107 #ifdef HAVE_SYS_CDEFS_H
108 # include <sys/cdefs.h> /* For __P() */
109 #endif
110 #ifdef HAVE_SYS_STAT_H
111 # include <sys/stat.h> /* For S_* constants and macros */
112 #endif
113 #ifdef HAVE_SYS_SYSMACROS_H
114 # include <sys/sysmacros.h> /* For MIN, MAX, etc */
115 #endif
116 #ifdef HAVE_SYS_MMAN_H
117 #include <sys/mman.h> /* for MAP_ANONYMOUS */
118 #endif
119 #ifdef HAVE_SYS_STRTIO_H
120 #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
121 #endif
122 #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
123 # if defined(HAVE_SYS_STREAM_H)
124 #  include <sys/stream.h>       /* reqd for queue_t on Solaris 2.5.1 */
125 # endif
126 #include <sys/ptms.h>   /* for grantpt() and friends */
127 #endif
128
129 #include <netinet/in_systm.h> /* For typedefs */
130 #if defined(HAVE_NETDB_H)
131 # include <netdb.h>
132 #endif
133 #ifdef HAVE_RPC_TYPES_H
134 # include <rpc/types.h> /* For INADDR_LOOPBACK */
135 #endif
136 #ifdef USE_PAM
137 #if defined(HAVE_SECURITY_PAM_APPL_H)
138 # include <security/pam_appl.h>
139 #elif defined (HAVE_PAM_PAM_APPL_H)
140 # include <pam/pam_appl.h>
141 #endif
142 #endif
143 #ifdef HAVE_READPASSPHRASE_H
144 # include <readpassphrase.h>
145 #endif
146
147 #ifdef HAVE_IA_H
148 # include <ia.h>
149 #endif
150
151 #ifdef HAVE_IAF_H
152 # include <iaf.h>
153 #endif
154
155 #ifdef HAVE_TMPDIR_H
156 # include <tmpdir.h>
157 #endif
158
159 #ifdef HAVE_LIBUTIL_H
160 # include <libutil.h> /* Openpty on FreeBSD at least */
161 #endif
162
163 #if defined(KRB5) && defined(USE_AFS)
164 # include <krb5.h>
165 # include <kafs.h>
166 #endif
167
168 #if defined(HAVE_SYS_SYSLOG_H)
169 # include <sys/syslog.h>
170 #endif
171
172 /*
173  * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
174  * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
175  */
176 #ifdef GETSPNAM_CONFLICTING_DEFS
177 # ifdef _INCLUDE__STDC__
178 #  undef _INCLUDE__STDC__
179 # endif
180 #endif
181
182 #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
183
184 #include "defines.h"
185
186 #include "openbsd-compat/openbsd-compat.h"
187 #include "openbsd-compat/bsd-nextstep.h"
188
189 #include "entropy.h"
190
191 #endif /* INCLUDES_H */
This page took 0.05702 seconds and 5 git commands to generate.