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