2001-12-21 06:51:28 +03:00
|
|
|
/* $OpenBSD: includes.h,v 1.16 2001/12/19 15:43:11 stevesk Exp $ */
|
2001-01-29 10:39:26 +03:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
/*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* This file includes most of the needed system headers.
|
2000-04-16 05:18:38 +04:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 16:26:21 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#ifndef INCLUDES_H
|
|
|
|
#define INCLUDES_H
|
|
|
|
|
|
|
|
#define RCSID(msg) \
|
|
|
|
static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
|
|
|
|
|
1999-11-16 05:29:26 +03:00
|
|
|
#include "config.h"
|
|
|
|
|
2001-03-14 03:39:45 +03:00
|
|
|
#include "openbsd-compat/bsd-nextstep.h"
|
2000-06-18 09:43:25 +04:00
|
|
|
|
1999-10-27 07:42:43 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/resource.h>
|
2001-12-19 20:58:01 +03:00
|
|
|
#include <sys/utsname.h>
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <dirent.h>
|
2000-09-24 04:10:13 +04:00
|
|
|
|
2001-02-12 10:29:45 +03:00
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
# include <limits.h>
|
|
|
|
#endif
|
2000-09-24 04:10:13 +04:00
|
|
|
#ifdef HAVE_GETOPT_H
|
2001-02-12 10:29:45 +03:00
|
|
|
# include <getopt.h>
|
2000-09-05 09:13:06 +04:00
|
|
|
#endif
|
2001-09-18 01:34:33 +04:00
|
|
|
#ifndef HAVE_GETOPT_OPTRESET
|
|
|
|
#define getopt(ac, av, o) BSDgetopt(ac, av, o)
|
|
|
|
#endif
|
1999-12-28 07:09:35 +03:00
|
|
|
#ifdef HAVE_BSTRING_H
|
|
|
|
# include <bstring.h>
|
2001-02-05 15:42:17 +03:00
|
|
|
#endif
|
2001-03-17 04:15:38 +03:00
|
|
|
#if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
|
|
|
|
defined(GLOB_HAS_GL_MATCHC)
|
2001-03-14 03:39:45 +03:00
|
|
|
# include <glob.h>
|
|
|
|
#endif
|
1999-11-15 07:40:55 +03:00
|
|
|
#ifdef HAVE_NETGROUP_H
|
|
|
|
# include <netgroup.h>
|
2001-02-05 15:42:17 +03:00
|
|
|
#endif
|
2000-12-28 18:46:20 +03:00
|
|
|
#if defined(HAVE_NETDB_H)
|
1999-12-28 07:09:35 +03:00
|
|
|
# include <netdb.h>
|
2001-02-05 15:42:17 +03:00
|
|
|
#endif
|
1999-11-11 02:40:23 +03:00
|
|
|
#ifdef HAVE_ENDIAN_H
|
|
|
|
# include <endian.h>
|
|
|
|
#endif
|
1999-11-16 05:29:26 +03:00
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
# include <sys/select.h>
|
|
|
|
#endif
|
1999-11-22 05:57:07 +03:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
1999-12-21 03:18:08 +03:00
|
|
|
#ifdef HAVE_SYS_BSDTTY_H
|
|
|
|
# include <sys/bsdtty.h>
|
|
|
|
#endif
|
2000-08-15 04:01:22 +04:00
|
|
|
#ifdef HAVE_TTYENT_H
|
|
|
|
# include <ttyent.h>
|
|
|
|
#endif
|
1999-12-28 07:09:35 +03:00
|
|
|
#ifdef USE_PAM
|
1999-11-16 05:29:26 +03:00
|
|
|
# include <security/pam_appl.h>
|
1999-11-19 07:32:34 +03:00
|
|
|
#endif
|
1999-12-30 07:08:44 +03:00
|
|
|
#ifdef HAVE_POLL_H
|
|
|
|
# include <poll.h>
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_SYS_POLL_H
|
|
|
|
# include <sys/poll.h>
|
|
|
|
# endif
|
|
|
|
#endif
|
2000-01-19 05:45:07 +03:00
|
|
|
#ifdef HAVE_SYS_SYSMACROS_H
|
|
|
|
# include <sys/sysmacros.h>
|
|
|
|
#endif
|
2001-01-15 05:34:37 +03:00
|
|
|
#ifdef HAVE_UTIME_H
|
|
|
|
# include <utime.h>
|
|
|
|
#endif
|
1999-11-11 02:40:23 +03:00
|
|
|
#include "version.h"
|
2001-03-14 03:39:45 +03:00
|
|
|
#include "openbsd-compat/openbsd-compat.h"
|
|
|
|
#include "openbsd-compat/bsd-cygwin_util.h"
|
2000-04-16 06:31:48 +04:00
|
|
|
#include "entropy.h"
|
|
|
|
|
2000-09-24 04:10:13 +04:00
|
|
|
#endif /* INCLUDES_H */
|