]> andersk Git - openssh.git/blame - includes.h
- stevesk@cvs.openbsd.org 2006/07/22 19:08:54
[openssh.git] / includes.h
CommitLineData
b0f6943a 1/* $OpenBSD: includes.h,v 1.53 2006/07/22 19:08:54 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 <stdlib.h>
25#include <string.h>
2f125ca1 26
6f68f28a 27#ifdef HAVE_LIMITS_H
7b0737a4 28# include <limits.h> /* For PATH_MAX */
6f68f28a 29#endif
2f125ca1 30#ifdef HAVE_GETOPT_H
6f68f28a 31# include <getopt.h>
3c62e7eb 32#endif
d94aa2ae 33#ifdef HAVE_BSTRING_H
34# include <bstring.h>
2b87da3b 35#endif
40849fdb 36#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
37 defined(GLOB_HAS_GL_MATCHC)
84ceda19 38# include <glob.h>
39#endif
4cca272e 40#ifdef HAVE_ENDIAN_H
41# include <endian.h>
42#endif
7b0737a4 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
b02dadfc 53# include <libc.h>
54#endif
55#ifdef HAVE_PATHS
56# include <paths.h>
7b0737a4 57#endif
7b0737a4 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# ifdef HAVE_TV_IN_UTMPX
74# include <sys/time.h>
75# endif
76# include <utmpx.h>
77#endif
78#ifdef HAVE_LASTLOG_H
79# include <lastlog.h>
80#endif
7b0737a4 81
82#include <sys/types.h>
b09a984b 83#ifdef HAVE_SYS_TIME_H
7b0737a4 84# include <sys/time.h> /* For timersub */
85#endif
7b0737a4 86#ifdef HAVE_SYS_SELECT_H
87# include <sys/select.h>
b09a984b 88#endif
a7effaac 89#ifdef HAVE_SYS_BSDTTY_H
90# include <sys/bsdtty.h>
91#endif
7b0737a4 92#include <sys/param.h> /* For MAXPATHLEN and roundup() */
5749e709 93#ifdef HAVE_STDINT_H
94# include <stdint.h>
95#endif
b5b88c19 96#include <termios.h>
7b0737a4 97#ifdef HAVE_SYS_BITYPES_H
98# include <sys/bitypes.h> /* For u_intXX_t */
99#endif
100#ifdef HAVE_SYS_CDEFS_H
101# include <sys/cdefs.h> /* For __P() */
102#endif
b481f63d 103#ifdef HAVE_SYS_STAT_H
104# include <sys/stat.h> /* For S_* constants and macros */
105#endif
20af321f 106#ifdef HAVE_SYS_SYSMACROS_H
7b0737a4 107# include <sys/sysmacros.h> /* For MIN, MAX, etc */
20af321f 108#endif
7b0737a4 109#ifdef HAVE_SYS_MMAN_H
110#include <sys/mman.h> /* for MAP_ANONYMOUS */
111#endif
321735c7 112#ifdef HAVE_SYS_STRTIO_H
113#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
114#endif
9e833a9b 115#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
51693efd 116# if defined(HAVE_SYS_STREAM_H)
117# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
118# endif
9e833a9b 119#include <sys/ptms.h> /* for grantpt() and friends */
120#endif
7b0737a4 121
122#include <netinet/in_systm.h> /* For typedefs */
7b0737a4 123#ifdef HAVE_RPC_TYPES_H
124# include <rpc/types.h> /* For INADDR_LOOPBACK */
125#endif
126#ifdef USE_PAM
2511d104 127#if defined(HAVE_SECURITY_PAM_APPL_H)
7b0737a4 128# include <security/pam_appl.h>
2511d104 129#elif defined (HAVE_PAM_PAM_APPL_H)
130# include <pam/pam_appl.h>
131#endif
89c7e31c 132#endif
75817f90 133#ifdef HAVE_READPASSPHRASE_H
134# include <readpassphrase.h>
135#endif
7b0737a4 136
ef51930f 137#ifdef HAVE_IA_H
138# include <ia.h>
139#endif
140
4c653d8e 141#ifdef HAVE_IAF_H
142# include <iaf.h>
143#endif
144
ef51930f 145#ifdef HAVE_TMPDIR_H
146# include <tmpdir.h>
147#endif
148
cacd2e7a 149#ifdef HAVE_LIBUTIL_H
150# include <libutil.h> /* Openpty on FreeBSD at least */
151#endif
152
bcfcc5f9 153#if defined(KRB5) && defined(USE_AFS)
309af4e5 154# include <krb5.h>
155# include <kafs.h>
156#endif
157
35fc74ed 158#if defined(HAVE_SYS_SYSLOG_H)
159# include <sys/syslog.h>
160#endif
161
c3a4ce90 162/*
163 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
164 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
165 */
b29fd59f 166#ifdef GETSPNAM_CONFLICTING_DEFS
c3a4ce90 167# ifdef _INCLUDE__STDC__
168# undef _INCLUDE__STDC__
169# endif
170#endif
171
7b0737a4 172#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
173
174#include "defines.h"
175
84ceda19 176#include "openbsd-compat/openbsd-compat.h"
7b0737a4 177#include "openbsd-compat/bsd-nextstep.h"
35484284 178
7b0737a4 179#include "entropy.h"
23aa1237 180
2f125ca1 181#endif /* INCLUDES_H */
This page took 0.241867 seconds and 5 git commands to generate.