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