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