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