]> andersk Git - openssh.git/blame - includes.h
- stevesk@cvs.openbsd.org 2006/02/07 01:42:00
[openssh.git] / includes.h
CommitLineData
1d3e026f 1/* $OpenBSD: includes.h,v 1.25 2006/02/07 01:42:00 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>
28#include <ctype.h>
29#include <errno.h>
7b0737a4 30#include <fcntl.h> /* For O_NONBLOCK */
8efc0c15 31#include <signal.h>
8efc0c15 32#include <stdlib.h>
33#include <string.h>
34#include <stdarg.h>
35#include <pwd.h>
36#include <grp.h>
8efc0c15 37#include <time.h>
8efc0c15 38#include <dirent.h>
5e96b616 39#include <stddef.h>
2f125ca1 40
6f68f28a 41#ifdef HAVE_LIMITS_H
7b0737a4 42# include <limits.h> /* For PATH_MAX */
6f68f28a 43#endif
2f125ca1 44#ifdef HAVE_GETOPT_H
6f68f28a 45# include <getopt.h>
3c62e7eb 46#endif
d94aa2ae 47#ifdef HAVE_BSTRING_H
48# include <bstring.h>
2b87da3b 49#endif
40849fdb 50#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
51 defined(GLOB_HAS_GL_MATCHC)
84ceda19 52# include <glob.h>
53#endif
4cca272e 54#ifdef HAVE_ENDIAN_H
55# include <endian.h>
56#endif
7b0737a4 57#ifdef HAVE_TTYENT_H
58# include <ttyent.h>
59#endif
60#ifdef HAVE_UTIME_H
61# include <utime.h>
62#endif
63#ifdef HAVE_MAILLOCK_H
64# include <maillock.h> /* For _PATH_MAILDIR */
65#endif
66#ifdef HAVE_NEXT
67# include <libc.h>
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
93#ifdef HAVE_PATHS_H
94# include <paths.h> /* For _PATH_XXX */
793edc37 95#endif
7b0737a4 96
97#include <sys/types.h>
98#include <sys/socket.h>
99#include <sys/ioctl.h>
100#include <sys/wait.h>
b09a984b 101#ifdef HAVE_SYS_TIME_H
7b0737a4 102# include <sys/time.h> /* For timersub */
103#endif
104#include <sys/resource.h>
105#ifdef HAVE_SYS_SELECT_H
106# include <sys/select.h>
b09a984b 107#endif
a7effaac 108#ifdef HAVE_SYS_BSDTTY_H
109# include <sys/bsdtty.h>
110#endif
7b0737a4 111#include <sys/param.h> /* For MAXPATHLEN and roundup() */
112#ifdef HAVE_SYS_UN_H
113# include <sys/un.h> /* For sockaddr_un */
dbaa2e87 114#endif
5749e709 115#ifdef HAVE_STDINT_H
116# include <stdint.h>
117#endif
7b0737a4 118#ifdef HAVE_SYS_BITYPES_H
119# include <sys/bitypes.h> /* For u_intXX_t */
120#endif
121#ifdef HAVE_SYS_CDEFS_H
122# include <sys/cdefs.h> /* For __P() */
123#endif
124#ifdef HAVE_SYS_STAT_H
125# include <sys/stat.h> /* For S_* constants and macros */
beb43d31 126#endif
20af321f 127#ifdef HAVE_SYS_SYSMACROS_H
7b0737a4 128# include <sys/sysmacros.h> /* For MIN, MAX, etc */
20af321f 129#endif
7b0737a4 130#ifdef HAVE_SYS_MMAN_H
131#include <sys/mman.h> /* for MAP_ANONYMOUS */
132#endif
321735c7 133#ifdef HAVE_SYS_STRTIO_H
134#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
135#endif
9e833a9b 136#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
51693efd 137# if defined(HAVE_SYS_STREAM_H)
138# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
139# endif
9e833a9b 140#include <sys/ptms.h> /* for grantpt() and friends */
141#endif
7b0737a4 142
143#include <netinet/in_systm.h> /* For typedefs */
144#include <netinet/in.h> /* For IPv6 macros */
145#include <netinet/ip.h> /* For IPTOS macros */
146#include <netinet/tcp.h>
147#include <arpa/inet.h>
9f59c5a3 148#if defined(HAVE_NETDB_H)
149# include <netdb.h>
150#endif
7b0737a4 151#ifdef HAVE_RPC_TYPES_H
152# include <rpc/types.h> /* For INADDR_LOOPBACK */
153#endif
154#ifdef USE_PAM
2511d104 155#if defined(HAVE_SECURITY_PAM_APPL_H)
7b0737a4 156# include <security/pam_appl.h>
2511d104 157#elif defined (HAVE_PAM_PAM_APPL_H)
158# include <pam/pam_appl.h>
159#endif
89c7e31c 160#endif
75817f90 161#ifdef HAVE_READPASSPHRASE_H
162# include <readpassphrase.h>
163#endif
7b0737a4 164
ef51930f 165#ifdef HAVE_IA_H
166# include <ia.h>
167#endif
168
4c653d8e 169#ifdef HAVE_IAF_H
170# include <iaf.h>
171#endif
172
ef51930f 173#ifdef HAVE_TMPDIR_H
174# include <tmpdir.h>
175#endif
176
cacd2e7a 177#ifdef HAVE_LIBUTIL_H
178# include <libutil.h> /* Openpty on FreeBSD at least */
179#endif
180
bcfcc5f9 181#if defined(KRB5) && defined(USE_AFS)
309af4e5 182# include <krb5.h>
183# include <kafs.h>
184#endif
185
35fc74ed 186#if defined(HAVE_SYS_SYSLOG_H)
187# include <sys/syslog.h>
188#endif
189
c3a4ce90 190/*
191 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
192 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
193 */
b29fd59f 194#ifdef GETSPNAM_CONFLICTING_DEFS
c3a4ce90 195# ifdef _INCLUDE__STDC__
196# undef _INCLUDE__STDC__
197# endif
198#endif
199
7b0737a4 200#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
201
202#include "defines.h"
203
4cca272e 204#include "version.h"
84ceda19 205#include "openbsd-compat/openbsd-compat.h"
7b0737a4 206#include "openbsd-compat/bsd-nextstep.h"
35484284 207
7b0737a4 208#include "entropy.h"
23aa1237 209
2f125ca1 210#endif /* INCLUDES_H */
This page took 0.330294 seconds and 5 git commands to generate.