]> andersk Git - openssh.git/blame - includes.h
- (djm) Added bsd-inet_aton and configure support for NeXT
[openssh.git] / includes.h
CommitLineData
8efc0c15 1/*
6ae2364d 2 *
5260325f 3 * includes.h
6ae2364d 4 *
5260325f 5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6ae2364d 6 *
5260325f 7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
6ae2364d 9 *
5260325f 10 * Created: Thu Mar 23 16:29:37 1995 ylo
6ae2364d 11 *
5260325f 12 * This file includes most of the needed system headers.
6ae2364d 13 *
5260325f 14 */
8efc0c15 15
16#ifndef INCLUDES_H
17#define INCLUDES_H
18
19#define RCSID(msg) \
20static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
21
793edc37 22#include "config.h"
23
729bfe59 24#include "next-posix.h"
25
8efc0c15 26#include <sys/types.h>
27#include <sys/socket.h>
8efc0c15 28#include <sys/ioctl.h>
8efc0c15 29#include <sys/wait.h>
8efc0c15 30#include <sys/un.h>
31#include <sys/resource.h>
32
8efc0c15 33#include <netinet/tcp.h>
8efc0c15 34#include <arpa/inet.h>
35#include <netdb.h>
36
8efc0c15 37#include <stdio.h>
38#include <ctype.h>
39#include <errno.h>
40#include <fcntl.h>
8efc0c15 41#include <signal.h>
42#include <termios.h>
43#include <stdlib.h>
44#include <string.h>
45#include <stdarg.h>
46#include <pwd.h>
47#include <grp.h>
8efc0c15 48#include <time.h>
8efc0c15 49#include <dirent.h>
50
d94aa2ae 51#ifdef HAVE_BSTRING_H
52# include <bstring.h>
53#endif
c75a1a66 54#ifdef HAVE_NETGROUP_H
55# include <netgroup.h>
56#endif
d94aa2ae 57#ifdef HAVE_NETDB_H
58# include <netdb.h>
59#endif
4cca272e 60#ifdef HAVE_ENDIAN_H
61# include <endian.h>
62#endif
793edc37 63#ifdef HAVE_SYS_SELECT_H
64# include <sys/select.h>
65#endif
b09a984b 66#ifdef HAVE_SYS_TIME_H
67# include <sys/time.h>
68#endif
a7effaac 69#ifdef HAVE_SYS_BSDTTY_H
70# include <sys/bsdtty.h>
71#endif
d94aa2ae 72#ifdef USE_PAM
793edc37 73# include <security/pam_appl.h>
beb43d31 74#endif
a5c9cd31 75#ifdef HAVE_POLL_H
76# include <poll.h>
77#else
78# ifdef HAVE_SYS_POLL_H
79# include <sys/poll.h>
80# endif
81#endif
20af321f 82#ifdef HAVE_SYS_SYSMACROS_H
83# include <sys/sysmacros.h>
84#endif
4cca272e 85
86#include "version.h"
48e671d5 87
3dc1102e 88/* OpenBSD function replacements */
89#include "openbsd-compat.h"
48e671d5 90
35484284 91/* Entropy collection */
92#include "entropy.h"
93
8efc0c15 94/* Define this to be the path of the xauth program. */
95#ifndef XAUTH_PATH
96#define XAUTH_PATH "/usr/X11R6/bin/xauth"
97#endif /* XAUTH_PATH */
98
99/* Define this to be the path of the rsh program. */
100#ifndef _PATH_RSH
101#define _PATH_RSH "/usr/bin/rsh"
102#endif /* _PATH_RSH */
103
aa3378df 104/*
105 * Define this to use pipes instead of socketpairs for communicating with the
106 * client program. Socketpairs do not seem to work on all systems.
107 */
bc8c2601 108/* #define USE_PIPES 1 */
8efc0c15 109
5260325f 110#endif /* INCLUDES_H */
This page took 0.480795 seconds and 5 git commands to generate.