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