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