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