]> andersk Git - openssh.git/blame - includes.h
- stevesk@cvs.openbsd.org 2006/02/10 00:27:13
[openssh.git] / includes.h
CommitLineData
bd7c69ea 1/* $OpenBSD: includes.h,v 1.32 2006/02/10 00:27:13 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>
5e96b616 38#include <stddef.h>
2f125ca1 39
6f68f28a 40#ifdef HAVE_LIMITS_H
7b0737a4 41# include <limits.h> /* For PATH_MAX */
6f68f28a 42#endif
2f125ca1 43#ifdef HAVE_GETOPT_H
6f68f28a 44# include <getopt.h>
3c62e7eb 45#endif
d94aa2ae 46#ifdef HAVE_BSTRING_H
47# include <bstring.h>
2b87da3b 48#endif
40849fdb 49#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
50 defined(GLOB_HAS_GL_MATCHC)
84ceda19 51# include <glob.h>
52#endif
4cca272e 53#ifdef HAVE_ENDIAN_H
54# include <endian.h>
55#endif
7b0737a4 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
68#include <unistd.h> /* For STDIN_FILENO, etc */
7b0737a4 69
70/*
71 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
72 */
73#ifdef HAVE_STRINGS_H
74# include <strings.h>
75#endif
76#ifdef HAVE_LOGIN_H
77# include <login.h>
78#endif
79
80#ifdef HAVE_UTMP_H
81# include <utmp.h>
82#endif
83#ifdef HAVE_UTMPX_H
84# ifdef HAVE_TV_IN_UTMPX
85# include <sys/time.h>
86# endif
87# include <utmpx.h>
88#endif
89#ifdef HAVE_LASTLOG_H
90# include <lastlog.h>
91#endif
7b0737a4 92
93#include <sys/types.h>
94#include <sys/socket.h>
7b0737a4 95#include <sys/wait.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() */
106#ifdef HAVE_SYS_UN_H
107# include <sys/un.h> /* For sockaddr_un */
dbaa2e87 108#endif
5749e709 109#ifdef HAVE_STDINT_H
110# include <stdint.h>
111#endif
7b0737a4 112#ifdef HAVE_SYS_BITYPES_H
113# include <sys/bitypes.h> /* For u_intXX_t */
114#endif
115#ifdef HAVE_SYS_CDEFS_H
116# include <sys/cdefs.h> /* For __P() */
117#endif
118#ifdef HAVE_SYS_STAT_H
119# include <sys/stat.h> /* For S_* constants and macros */
beb43d31 120#endif
20af321f 121#ifdef HAVE_SYS_SYSMACROS_H
7b0737a4 122# include <sys/sysmacros.h> /* For MIN, MAX, etc */
20af321f 123#endif
7b0737a4 124#ifdef HAVE_SYS_MMAN_H
125#include <sys/mman.h> /* for MAP_ANONYMOUS */
126#endif
321735c7 127#ifdef HAVE_SYS_STRTIO_H
128#include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
129#endif
9e833a9b 130#if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
51693efd 131# if defined(HAVE_SYS_STREAM_H)
132# include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
133# endif
9e833a9b 134#include <sys/ptms.h> /* for grantpt() and friends */
135#endif
7b0737a4 136
137#include <netinet/in_systm.h> /* For typedefs */
7b0737a4 138#include <arpa/inet.h>
9f59c5a3 139#if defined(HAVE_NETDB_H)
140# include <netdb.h>
141#endif
7b0737a4 142#ifdef HAVE_RPC_TYPES_H
143# include <rpc/types.h> /* For INADDR_LOOPBACK */
144#endif
145#ifdef USE_PAM
2511d104 146#if defined(HAVE_SECURITY_PAM_APPL_H)
7b0737a4 147# include <security/pam_appl.h>
2511d104 148#elif defined (HAVE_PAM_PAM_APPL_H)
149# include <pam/pam_appl.h>
150#endif
89c7e31c 151#endif
75817f90 152#ifdef HAVE_READPASSPHRASE_H
153# include <readpassphrase.h>
154#endif
7b0737a4 155
ef51930f 156#ifdef HAVE_IA_H
157# include <ia.h>
158#endif
159
4c653d8e 160#ifdef HAVE_IAF_H
161# include <iaf.h>
162#endif
163
ef51930f 164#ifdef HAVE_TMPDIR_H
165# include <tmpdir.h>
166#endif
167
cacd2e7a 168#ifdef HAVE_LIBUTIL_H
169# include <libutil.h> /* Openpty on FreeBSD at least */
170#endif
171
bcfcc5f9 172#if defined(KRB5) && defined(USE_AFS)
309af4e5 173# include <krb5.h>
174# include <kafs.h>
175#endif
176
35fc74ed 177#if defined(HAVE_SYS_SYSLOG_H)
178# include <sys/syslog.h>
179#endif
180
c3a4ce90 181/*
182 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
183 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
184 */
b29fd59f 185#ifdef GETSPNAM_CONFLICTING_DEFS
c3a4ce90 186# ifdef _INCLUDE__STDC__
187# undef _INCLUDE__STDC__
188# endif
189#endif
190
7b0737a4 191#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
192
193#include "defines.h"
194
4cca272e 195#include "version.h"
84ceda19 196#include "openbsd-compat/openbsd-compat.h"
7b0737a4 197#include "openbsd-compat/bsd-nextstep.h"
35484284 198
7b0737a4 199#include "entropy.h"
23aa1237 200
2f125ca1 201#endif /* INCLUDES_H */
This page took 0.220102 seconds and 5 git commands to generate.