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