]> andersk Git - gssapi-openssh.git/blame - openssh/includes.h
Import of openssh-SNAP-20040105
[gssapi-openssh.git] / openssh / includes.h
CommitLineData
e9a17296 1/* $OpenBSD: includes.h,v 1.17 2002/01/26 16:44:22 stevesk 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) \
20static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
21
22#include "config.h"
23
3c0ef626 24#include <stdio.h>
25#include <ctype.h>
26#include <errno.h>
700318f3 27#include <fcntl.h> /* For O_NONBLOCK */
3c0ef626 28#include <signal.h>
29#include <stdlib.h>
30#include <string.h>
31#include <stdarg.h>
32#include <pwd.h>
33#include <grp.h>
34#include <time.h>
35#include <dirent.h>
36
37#ifdef HAVE_LIMITS_H
700318f3 38# include <limits.h> /* For PATH_MAX */
3c0ef626 39#endif
40#ifdef HAVE_GETOPT_H
41# include <getopt.h>
42#endif
3c0ef626 43#ifdef HAVE_BSTRING_H
44# include <bstring.h>
45#endif
46#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
47 defined(GLOB_HAS_GL_MATCHC)
48# include <glob.h>
49#endif
50#ifdef HAVE_NETGROUP_H
51# include <netgroup.h>
52#endif
3c0ef626 53#ifdef HAVE_ENDIAN_H
54# include <endian.h>
55#endif
700318f3 56#ifdef HAVE_TTYENT_H
57# include <ttyent.h>
58#endif
59#ifdef HAVE_UTIME_H
60# include <utime.h>
61#endif
62#ifdef HAVE_MAILLOCK_H
63# include <maillock.h> /* For _PATH_MAILDIR */
64#endif
65#ifdef HAVE_NEXT
66# include <libc.h>
67#endif
0fff78ff 68#define __USE_GNU /* before unistd.h, activate extra prototypes for glibc */
700318f3 69#include <unistd.h> /* For STDIN_FILENO, etc */
70#include <termios.h> /* Struct winsize */
71
72/*
73 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
74 */
75#ifdef HAVE_STRINGS_H
76# include <strings.h>
77#endif
78#ifdef HAVE_LOGIN_H
79# include <login.h>
80#endif
81
82#ifdef HAVE_UTMP_H
83# include <utmp.h>
84#endif
85#ifdef HAVE_UTMPX_H
86# ifdef HAVE_TV_IN_UTMPX
87# include <sys/time.h>
88# endif
89# include <utmpx.h>
90#endif
91#ifdef HAVE_LASTLOG_H
92# include <lastlog.h>
3c0ef626 93#endif
700318f3 94#ifdef HAVE_PATHS_H
95# include <paths.h> /* For _PATH_XXX */
96#endif
97
98#include <sys/types.h>
99#include <sys/socket.h>
100#include <sys/ioctl.h>
101#include <sys/wait.h>
3c0ef626 102#ifdef HAVE_SYS_TIME_H
700318f3 103# include <sys/time.h> /* For timersub */
104#endif
105#include <sys/resource.h>
106#ifdef HAVE_SYS_SELECT_H
107# include <sys/select.h>
3c0ef626 108#endif
109#ifdef HAVE_SYS_BSDTTY_H
110# include <sys/bsdtty.h>
111#endif
700318f3 112#include <sys/param.h> /* For MAXPATHLEN and roundup() */
113#ifdef HAVE_SYS_UN_H
114# include <sys/un.h> /* For sockaddr_un */
3c0ef626 115#endif
41b2f314 116#ifdef HAVE_STDINT_H
117# include <stdint.h>
118#endif
700318f3 119#ifdef HAVE_SYS_BITYPES_H
120# include <sys/bitypes.h> /* For u_intXX_t */
121#endif
122#ifdef HAVE_SYS_CDEFS_H
123# include <sys/cdefs.h> /* For __P() */
3c0ef626 124#endif
700318f3 125#ifdef HAVE_SYS_STAT_H
126# include <sys/stat.h> /* For S_* constants and macros */
3c0ef626 127#endif
128#ifdef HAVE_SYS_SYSMACROS_H
700318f3 129# include <sys/sysmacros.h> /* For MIN, MAX, etc */
3c0ef626 130#endif
700318f3 131#ifdef HAVE_SYS_MMAN_H
132#include <sys/mman.h> /* for MAP_ANONYMOUS */
133#endif
0fff78ff 134#ifdef HAVE_SYS_STRTIO_H
135#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
136#endif
700318f3 137
138#include <netinet/in_systm.h> /* For typedefs */
139#include <netinet/in.h> /* For IPv6 macros */
140#include <netinet/ip.h> /* For IPTOS macros */
141#include <netinet/tcp.h>
142#include <arpa/inet.h>
0fff78ff 143#if defined(HAVE_NETDB_H)
144# include <netdb.h>
145#endif
700318f3 146#ifdef HAVE_RPC_TYPES_H
147# include <rpc/types.h> /* For INADDR_LOOPBACK */
3c0ef626 148#endif
700318f3 149#ifdef USE_PAM
12408a1b 150#if defined(HAVE_SECURITY_PAM_APPL_H)
700318f3 151# include <security/pam_appl.h>
12408a1b 152#elif defined (HAVE_PAM_PAM_APPL_H)
153# include <pam/pam_appl.h>
154#endif
700318f3 155#endif
156#ifdef HAVE_READPASSPHRASE_H
157# include <readpassphrase.h>
158#endif
159
41b2f314 160#ifdef HAVE_IA_H
161# include <ia.h>
162#endif
163
164#ifdef HAVE_TMPDIR_H
165# include <tmpdir.h>
166#endif
167
6a9b3198 168#ifdef HAVE_LIBUTIL_H
169# include <libutil.h> /* Openpty on FreeBSD at least */
170#endif
171
700318f3 172#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
173
174#include "defines.h"
175
3c0ef626 176#include "version.h"
177#include "openbsd-compat/openbsd-compat.h"
700318f3 178#include "openbsd-compat/bsd-nextstep.h"
179
3c0ef626 180#include "entropy.h"
181
182#endif /* INCLUDES_H */
This page took 0.073296 seconds and 5 git commands to generate.