blob: fc269e8ebed6850b7892f81866c53c0fa0aa5e29 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file includes most of the needed system headers.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#ifndef INCLUDES_H
15#define INCLUDES_H
16
17#define RCSID(msg) \
18static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
19
Damien Miller4874c791999-11-16 13:29:26 +110020#include "config.h"
21
Damien Miller0f91b4e2000-06-18 15:43:25 +100022#include "next-posix.h"
23
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024#include <sys/types.h>
25#include <sys/socket.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026#include <sys/ioctl.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027#include <sys/wait.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028#include <sys/resource.h>
29
Damien Millerbac2d8a2000-09-05 16:13:06 +110030#ifndef HAVE_CYGWIN
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031#include <netinet/tcp.h>
Damien Millerbac2d8a2000-09-05 16:13:06 +110032#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035#include <stdio.h>
36#include <ctype.h>
37#include <errno.h>
38#include <fcntl.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039#include <signal.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040#include <stdlib.h>
41#include <string.h>
42#include <stdarg.h>
43#include <pwd.h>
44#include <grp.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045#include <time.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046#include <dirent.h>
Damien Miller72c9a7e2000-09-24 11:10:13 +110047
48#ifdef HAVE_GETOPT_H
Damien Millerbac2d8a2000-09-05 16:13:06 +110049#include <getopt.h>
50#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110051#ifdef HAVE_BSTRING_H
52# include <bstring.h>
53#endif
Damien Miller3bd49ec1999-11-15 15:40:55 +110054#ifdef HAVE_NETGROUP_H
55# include <netgroup.h>
56#endif
Ben Lindstrom42717bf2000-12-28 15:46:20 +000057#if defined(HAVE_NETDB_H)
Damien Millerbeb4ba51999-12-28 15:09:35 +110058# include <netdb.h>
59#endif
Damien Millerab18c411999-11-11 10:40:23 +110060#ifdef HAVE_ENDIAN_H
61# include <endian.h>
62#endif
Damien Miller4874c791999-11-16 13:29:26 +110063#ifdef HAVE_SYS_SELECT_H
64# include <sys/select.h>
65#endif
Damien Millerb3ca3aa1999-11-22 13:57:07 +110066#ifdef HAVE_SYS_TIME_H
67# include <sys/time.h>
68#endif
Damien Miller76112de1999-12-21 11:18:08 +110069#ifdef HAVE_SYS_BSDTTY_H
70# include <sys/bsdtty.h>
71#endif
Damien Miller348c9b72000-08-15 10:01:22 +100072#ifdef HAVE_TTYENT_H
73# include <ttyent.h>
74#endif
Damien Millerbeb4ba51999-12-28 15:09:35 +110075#ifdef USE_PAM
Damien Miller4874c791999-11-16 13:29:26 +110076# include <security/pam_appl.h>
Damien Miller04f80141999-11-19 15:32:34 +110077#endif
Damien Millere72b7af1999-12-30 15:08:44 +110078#ifdef HAVE_POLL_H
79# include <poll.h>
80#else
81# ifdef HAVE_SYS_POLL_H
82# include <sys/poll.h>
83# endif
84#endif
Damien Millereaf99942000-01-19 13:45:07 +110085#ifdef HAVE_SYS_SYSMACROS_H
86# include <sys/sysmacros.h>
87#endif
Ben Lindstrom42202bc2001-01-15 02:34:37 +000088#ifdef HAVE_UTIME_H
89# include <utime.h>
90#endif
Damien Miller874d77b2000-10-14 16:23:11 +110091#ifdef HAVE_VIS_H
92# include <vis.h>
93#endif
Damien Millerab18c411999-11-11 10:40:23 +110094#include "version.h"
Damien Miller16e519c2000-05-09 14:28:55 +100095#include "openbsd-compat.h"
Damien Miller72c9a7e2000-09-24 11:10:13 +110096#include "cygwin_util.h"
Damien Miller5f056372000-04-16 12:31:48 +100097#include "entropy.h"
98
Damien Miller72c9a7e2000-09-24 11:10:13 +110099#endif /* INCLUDES_H */