]> andersk Git - openssh.git/blame - includes.h
- stevesk@cvs.openbsd.org 2006/07/10 16:37:36
[openssh.git] / includes.h
CommitLineData
4c72fcfd 1/* $OpenBSD: includes.h,v 1.48 2006/07/10 16:37:36 stevesk Exp $ */
23c2a7a5 2
8efc0c15 3/*
5260325f 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
5260325f 7 * This file includes most of the needed system headers.
6ae2364d 8 *
bcbf86ec 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".
5260325f 14 */
8efc0c15 15
16#ifndef INCLUDES_H
17#define INCLUDES_H
18
793edc37 19#include "config.h"
20
8b396721 21#define _GNU_SOURCE /* activate extra prototypes for glibc */
22
8efc0c15 23#include <stdio.h>
8efc0c15 24#include <errno.h>
8efc0c15 25#include <stdlib.h>
26#include <string.h>
8efc0c15 27#include <time.h>
5e96b616 28#include <stddef.h>
2f125ca1 29
6f68f28a 30#ifdef HAVE_LIMITS_H
7b0737a4 31# include <limits.h> /* For PATH_MAX */
6f68f28a 32#endif
2f125ca1 33#ifdef HAVE_GETOPT_H
6f68f28a 34# include <getopt.h>
3c62e7eb 35#endif
d94aa2ae 36#ifdef HAVE_BSTRING_H
37# include <bstring.h>
2b87da3b 38#endif
40849fdb 39#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
40 defined(GLOB_HAS_GL_MATCHC)
84ceda19 41# include <glob.h>
42#endif
4cca272e 43#ifdef HAVE_ENDIAN_H
44# include <endian.h>
45#endif
7b0737a4 46#ifdef HAVE_TTYENT_H
47# include <ttyent.h>
48#endif
49#ifdef HAVE_UTIME_H
50# include <utime.h>
51#endif
52#ifdef HAVE_MAILLOCK_H
53# include <maillock.h> /* For _PATH_MAILDIR */
54#endif
55#ifdef HAVE_NEXT
b02dadfc 56# include <libc.h>
57#endif
58#ifdef HAVE_PATHS
59# include <paths.h>
7b0737a4 60#endif
61#include <unistd.h> /* For STDIN_FILENO, etc */
7b0737a4 62
63/*
64 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
65 */
66#ifdef HAVE_STRINGS_H
67# include <strings.h>
68#endif
69#ifdef HAVE_LOGIN_H
70# include <login.h>
71#endif
72
73#ifdef HAVE_UTMP_H
74# include <utmp.h>
75#endif
76#ifdef HAVE_UTMPX_H
77# ifdef HAVE_TV_IN_UTMPX
78# include <sys/time.h>
79# endif
80# include <utmpx.h>
81#endif
82#ifdef HAVE_LASTLOG_H
83# include <lastlog.h>
84#endif
7b0737a4 85
86#include <sys/types.h>
b09a984b 87#ifdef HAVE_SYS_TIME_H
7b0737a4 88# include <sys/time.h> /* For timersub */
89#endif
7b0737a4 90#ifdef HAVE_SYS_SELECT_H
91# include <sys/select.h>
b09a984b 92#endif
a7effaac 93#ifdef HAVE_SYS_BSDTTY_H
94# include <sys/bsdtty.h>
95#endif
7b0737a4 96#include <sys/param.h> /* For MAXPATHLEN and roundup() */
5749e709 97#ifdef HAVE_STDINT_H
98# include <stdint.h>
99#endif
b5b88c19 100#include <termios.h>
7b0737a4 101#ifdef HAVE_SYS_BITYPES_H
102# include <sys/bitypes.h> /* For u_intXX_t */
103#endif
104#ifdef HAVE_SYS_CDEFS_H
105# include <sys/cdefs.h> /* For __P() */
106#endif
b481f63d 107#ifdef HAVE_SYS_STAT_H
108# include <sys/stat.h> /* For S_* constants and macros */
109#endif
20af321f 110#ifdef HAVE_SYS_SYSMACROS_H
7b0737a4 111# include <sys/sysmacros.h> /* For MIN, MAX, etc */
20af321f 112#endif
7b0737a4 113#ifdef HAVE_SYS_MMAN_H
114#include <sys/mman.h> /* for MAP_ANONYMOUS */
115#endif
321735c7 116#ifdef HAVE_SYS_STRTIO_H
117#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
118#endif
9e833a9b 119#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
51693efd 120# if defined(HAVE_SYS_STREAM_H)
121# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
122# endif
9e833a9b 123#include <sys/ptms.h> /* for grantpt() and friends */
124#endif
7b0737a4 125
126#include <netinet/in_systm.h> /* For typedefs */
9f59c5a3 127#if defined(HAVE_NETDB_H)
128# include <netdb.h>
129#endif
7b0737a4 130#ifdef HAVE_RPC_TYPES_H
131# include <rpc/types.h> /* For INADDR_LOOPBACK */
132#endif
133#ifdef USE_PAM
2511d104 134#if defined(HAVE_SECURITY_PAM_APPL_H)
7b0737a4 135# include <security/pam_appl.h>
2511d104 136#elif defined (HAVE_PAM_PAM_APPL_H)
137# include <pam/pam_appl.h>
138#endif
89c7e31c 139#endif
75817f90 140#ifdef HAVE_READPASSPHRASE_H
141# include <readpassphrase.h>
142#endif
7b0737a4 143
ef51930f 144#ifdef HAVE_IA_H
145# include <ia.h>
146#endif
147
4c653d8e 148#ifdef HAVE_IAF_H
149# include <iaf.h>
150#endif
151
ef51930f 152#ifdef HAVE_TMPDIR_H
153# include <tmpdir.h>
154#endif
155
cacd2e7a 156#ifdef HAVE_LIBUTIL_H
157# include <libutil.h> /* Openpty on FreeBSD at least */
158#endif
159
bcfcc5f9 160#if defined(KRB5) && defined(USE_AFS)
309af4e5 161# include <krb5.h>
162# include <kafs.h>
163#endif
164
35fc74ed 165#if defined(HAVE_SYS_SYSLOG_H)
166# include <sys/syslog.h>
167#endif
168
c3a4ce90 169/*
170 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
171 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
172 */
b29fd59f 173#ifdef GETSPNAM_CONFLICTING_DEFS
c3a4ce90 174# ifdef _INCLUDE__STDC__
175# undef _INCLUDE__STDC__
176# endif
177#endif
178
7b0737a4 179#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
180
181#include "defines.h"
182
84ceda19 183#include "openbsd-compat/openbsd-compat.h"
7b0737a4 184#include "openbsd-compat/bsd-nextstep.h"
35484284 185
7b0737a4 186#include "entropy.h"
23aa1237 187
2f125ca1 188#endif /* INCLUDES_H */
This page took 0.24158 seconds and 5 git commands to generate.