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