]> andersk Git - gssapi-openssh.git/blame - openssh/includes.h
shouldn't have been committed to OPENSSH_PORTABLE_DIST branch
[gssapi-openssh.git] / openssh / includes.h
CommitLineData
665a873d 1/* $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm 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
19#define RCSID(msg) \
665a873d 20static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
3c0ef626 21
22#include "config.h"
23
665a873d 24#include <stdarg.h>
3c0ef626 25#include <stdio.h>
26#include <ctype.h>
27#include <errno.h>
700318f3 28#include <fcntl.h> /* For O_NONBLOCK */
3c0ef626 29#include <signal.h>
30#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
33#include <pwd.h>
34#include <grp.h>
35#include <time.h>
36#include <dirent.h>
c9f39d2c 37#include <stddef.h>
3c0ef626 38
39#ifdef HAVE_LIMITS_H
700318f3 40# include <limits.h> /* For PATH_MAX */
3c0ef626 41#endif
42#ifdef HAVE_GETOPT_H
43# include <getopt.h>
44#endif
3c0ef626 45#ifdef HAVE_BSTRING_H
46# include <bstring.h>
47#endif
48#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
49 defined(GLOB_HAS_GL_MATCHC)
50# include <glob.h>
51#endif
52#ifdef HAVE_NETGROUP_H
53# include <netgroup.h>
54#endif
3c0ef626 55#ifdef HAVE_ENDIAN_H
56# include <endian.h>
57#endif
700318f3 58#ifdef HAVE_TTYENT_H
59# include <ttyent.h>
60#endif
61#ifdef HAVE_UTIME_H
62# include <utime.h>
63#endif
64#ifdef HAVE_MAILLOCK_H
65# include <maillock.h> /* For _PATH_MAILDIR */
66#endif
67#ifdef HAVE_NEXT
68# include <libc.h>
69#endif
0fff78ff 70#define __USE_GNU /* before unistd.h, activate extra prototypes for glibc */
700318f3 71#include <unistd.h> /* For STDIN_FILENO, etc */
72#include <termios.h> /* Struct winsize */
73
74/*
75 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
76 */
77#ifdef HAVE_STRINGS_H
78# include <strings.h>
79#endif
80#ifdef HAVE_LOGIN_H
81# include <login.h>
82#endif
83
84#ifdef HAVE_UTMP_H
85# include <utmp.h>
86#endif
87#ifdef HAVE_UTMPX_H
88# ifdef HAVE_TV_IN_UTMPX
89# include <sys/time.h>
90# endif
91# include <utmpx.h>
92#endif
93#ifdef HAVE_LASTLOG_H
94# include <lastlog.h>
3c0ef626 95#endif
700318f3 96#ifdef HAVE_PATHS_H
97# include <paths.h> /* For _PATH_XXX */
98#endif
99
100#include <sys/types.h>
101#include <sys/socket.h>
102#include <sys/ioctl.h>
103#include <sys/wait.h>
3c0ef626 104#ifdef HAVE_SYS_TIME_H
700318f3 105# include <sys/time.h> /* For timersub */
106#endif
107#include <sys/resource.h>
108#ifdef HAVE_SYS_SELECT_H
109# include <sys/select.h>
3c0ef626 110#endif
111#ifdef HAVE_SYS_BSDTTY_H
112# include <sys/bsdtty.h>
113#endif
700318f3 114#include <sys/param.h> /* For MAXPATHLEN and roundup() */
115#ifdef HAVE_SYS_UN_H
116# include <sys/un.h> /* For sockaddr_un */
3c0ef626 117#endif
41b2f314 118#ifdef HAVE_STDINT_H
119# include <stdint.h>
120#endif
700318f3 121#ifdef HAVE_SYS_BITYPES_H
122# include <sys/bitypes.h> /* For u_intXX_t */
123#endif
124#ifdef HAVE_SYS_CDEFS_H
125# include <sys/cdefs.h> /* For __P() */
3c0ef626 126#endif
700318f3 127#ifdef HAVE_SYS_STAT_H
128# include <sys/stat.h> /* For S_* constants and macros */
3c0ef626 129#endif
130#ifdef HAVE_SYS_SYSMACROS_H
700318f3 131# include <sys/sysmacros.h> /* For MIN, MAX, etc */
3c0ef626 132#endif
700318f3 133#ifdef HAVE_SYS_MMAN_H
134#include <sys/mman.h> /* for MAP_ANONYMOUS */
135#endif
0fff78ff 136#ifdef HAVE_SYS_STRTIO_H
137#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
138#endif
cdd66111 139#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
140# if defined(HAVE_SYS_STREAM_H)
141# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
142# endif
143#include <sys/ptms.h> /* for grantpt() and friends */
144#endif
700318f3 145
146#include <netinet/in_systm.h> /* For typedefs */
147#include <netinet/in.h> /* For IPv6 macros */
148#include <netinet/ip.h> /* For IPTOS macros */
149#include <netinet/tcp.h>
150#include <arpa/inet.h>
0fff78ff 151#if defined(HAVE_NETDB_H)
152# include <netdb.h>
153#endif
700318f3 154#ifdef HAVE_RPC_TYPES_H
155# include <rpc/types.h> /* For INADDR_LOOPBACK */
3c0ef626 156#endif
700318f3 157#ifdef USE_PAM
cdd66111 158#if defined(HAVE_SECURITY_PAM_APPL_H)
700318f3 159# include <security/pam_appl.h>
cdd66111 160#elif defined (HAVE_PAM_PAM_APPL_H)
161# include <pam/pam_appl.h>
162#endif
700318f3 163#endif
164#ifdef HAVE_READPASSPHRASE_H
165# include <readpassphrase.h>
166#endif
167
41b2f314 168#ifdef HAVE_IA_H
169# include <ia.h>
170#endif
171
665a873d 172#ifdef HAVE_IAF_H
173# include <iaf.h>
174#endif
175
41b2f314 176#ifdef HAVE_TMPDIR_H
177# include <tmpdir.h>
178#endif
179
6a9b3198 180#ifdef HAVE_LIBUTIL_H
181# include <libutil.h> /* Openpty on FreeBSD at least */
182#endif
183
cdd66111 184#if defined(KRB5) && defined(USE_AFS)
185# include <krb5.h>
186# include <kafs.h>
187#endif
188
665a873d 189#if defined(HAVE_SYS_SYSLOG_H)
190# include <sys/syslog.h>
191#endif
192
c9f39d2c 193/*
194 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
195 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
196 */
996d5e62 197#ifdef GETSPNAM_CONFLICTING_DEFS
c9f39d2c 198# ifdef _INCLUDE__STDC__
199# undef _INCLUDE__STDC__
200# endif
201#endif
202
700318f3 203#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
204
205#include "defines.h"
206
3c0ef626 207#include "version.h"
208#include "openbsd-compat/openbsd-compat.h"
700318f3 209#include "openbsd-compat/bsd-nextstep.h"
210
3c0ef626 211#include "entropy.h"
212
213#endif /* INCLUDES_H */
This page took 0.096243 seconds and 5 git commands to generate.