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