]> andersk Git - openssh.git/blob - includes.h
- stevesk@cvs.openbsd.org 2006/07/06 16:03:53
[openssh.git] / includes.h
1 /* $OpenBSD: includes.h,v 1.45 2006/07/06 16:03:53 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 #include <sys/socket.h>
91 #ifdef HAVE_SYS_TIME_H
92 # include <sys/time.h> /* For timersub */
93 #endif
94 #ifdef HAVE_SYS_SELECT_H
95 # include <sys/select.h>
96 #endif
97 #ifdef HAVE_SYS_BSDTTY_H
98 # include <sys/bsdtty.h>
99 #endif
100 #include <sys/param.h> /* For MAXPATHLEN and roundup() */
101 #ifdef HAVE_STDINT_H
102 # include <stdint.h>
103 #endif
104 #include <termios.h>
105 #ifdef HAVE_SYS_BITYPES_H
106 # include <sys/bitypes.h> /* For u_intXX_t */
107 #endif
108 #ifdef HAVE_SYS_CDEFS_H
109 # include <sys/cdefs.h> /* For __P() */
110 #endif
111 #ifdef HAVE_SYS_STAT_H
112 # include <sys/stat.h> /* For S_* constants and macros */
113 #endif
114 #ifdef HAVE_SYS_SYSMACROS_H
115 # include <sys/sysmacros.h> /* For MIN, MAX, etc */
116 #endif
117 #ifdef HAVE_SYS_MMAN_H
118 #include <sys/mman.h> /* for MAP_ANONYMOUS */
119 #endif
120 #ifdef HAVE_SYS_STRTIO_H
121 #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
122 #endif
123 #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
124 # if defined(HAVE_SYS_STREAM_H)
125 #  include <sys/stream.h>       /* reqd for queue_t on Solaris 2.5.1 */
126 # endif
127 #include <sys/ptms.h>   /* for grantpt() and friends */
128 #endif
129
130 #include <netinet/in_systm.h> /* For typedefs */
131 #if defined(HAVE_NETDB_H)
132 # include <netdb.h>
133 #endif
134 #ifdef HAVE_RPC_TYPES_H
135 # include <rpc/types.h> /* For INADDR_LOOPBACK */
136 #endif
137 #ifdef USE_PAM
138 #if defined(HAVE_SECURITY_PAM_APPL_H)
139 # include <security/pam_appl.h>
140 #elif defined (HAVE_PAM_PAM_APPL_H)
141 # include <pam/pam_appl.h>
142 #endif
143 #endif
144 #ifdef HAVE_READPASSPHRASE_H
145 # include <readpassphrase.h>
146 #endif
147
148 #ifdef HAVE_IA_H
149 # include <ia.h>
150 #endif
151
152 #ifdef HAVE_IAF_H
153 # include <iaf.h>
154 #endif
155
156 #ifdef HAVE_TMPDIR_H
157 # include <tmpdir.h>
158 #endif
159
160 #ifdef HAVE_LIBUTIL_H
161 # include <libutil.h> /* Openpty on FreeBSD at least */
162 #endif
163
164 #if defined(KRB5) && defined(USE_AFS)
165 # include <krb5.h>
166 # include <kafs.h>
167 #endif
168
169 #if defined(HAVE_SYS_SYSLOG_H)
170 # include <sys/syslog.h>
171 #endif
172
173 /*
174  * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
175  * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
176  */
177 #ifdef GETSPNAM_CONFLICTING_DEFS
178 # ifdef _INCLUDE__STDC__
179 #  undef _INCLUDE__STDC__
180 # endif
181 #endif
182
183 #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
184
185 #include "defines.h"
186
187 #include "openbsd-compat/openbsd-compat.h"
188 #include "openbsd-compat/bsd-nextstep.h"
189
190 #include "entropy.h"
191
192 #endif /* INCLUDES_H */
This page took 0.049801 seconds and 5 git commands to generate.