includes.h revision 57429
1/*
2 *
3 * includes.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 *                    All rights reserved
9 *
10 * Created: Thu Mar 23 16:29:37 1995 ylo
11 *
12 * This file includes most of the needed system headers.
13 *
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 <sys/types.h>
23#include <sys/socket.h>
24#include <sys/select.h>
25#include <sys/param.h>
26#include <sys/ioctl.h>
27#include <sys/endian.h>
28#include <sys/stat.h>
29#include <sys/wait.h>
30#include <sys/time.h>
31#include <sys/un.h>
32#include <sys/resource.h>
33
34#include <netinet/in.h>
35#include <netinet/in_systm.h>
36#include <netinet/tcp.h>
37#include <netinet/ip.h>
38#include <arpa/inet.h>
39#include <netdb.h>
40
41#include <netgroup.h>
42#include <stdio.h>
43#include <ctype.h>
44#include <errno.h>
45#include <fcntl.h>
46#include <signal.h>
47#include <termios.h>
48#include <stdlib.h>
49#include <string.h>
50#include <stdarg.h>
51#include <pwd.h>
52#include <grp.h>
53#include <unistd.h>
54#include <time.h>
55#include <paths.h>
56#include <dirent.h>
57
58#include "version.h"
59
60/* Define this to be the path of the xauth program. */
61#define XAUTH_PATH "/usr/X11R6/bin/xauth"
62
63/*
64 * Define this to use pipes instead of socketpairs for communicating with the
65 * client program.  Socketpairs do not seem to work on all systems.
66 */
67#define USE_PIPES 1
68
69#endif				/* INCLUDES_H */
70