Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 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 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
| 16 | #ifndef INCLUDES_H |
| 17 | #define INCLUDES_H |
| 18 | |
| 19 | #define RCSID(msg) \ |
| 20 | static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } |
| 21 | |
Damien Miller | 4874c79 | 1999-11-16 13:29:26 +1100 | [diff] [blame] | 22 | #include "config.h" |
| 23 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 24 | #include <sys/types.h> |
| 25 | #include <sys/socket.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 26 | #include <sys/param.h> |
| 27 | #include <sys/ioctl.h> |
| 28 | #include <sys/stat.h> |
| 29 | #include <sys/wait.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 30 | #include <sys/un.h> |
| 31 | #include <sys/resource.h> |
| 32 | |
| 33 | #include <netinet/in.h> |
| 34 | #include <netinet/in_systm.h> |
| 35 | #include <netinet/tcp.h> |
| 36 | #include <netinet/ip.h> |
| 37 | #include <arpa/inet.h> |
| 38 | #include <netdb.h> |
| 39 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 40 | #include <stdio.h> |
| 41 | #include <ctype.h> |
| 42 | #include <errno.h> |
| 43 | #include <fcntl.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 44 | #include <signal.h> |
| 45 | #include <termios.h> |
| 46 | #include <stdlib.h> |
| 47 | #include <string.h> |
| 48 | #include <stdarg.h> |
| 49 | #include <pwd.h> |
| 50 | #include <grp.h> |
| 51 | #include <unistd.h> |
| 52 | #include <time.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 53 | #include <dirent.h> |
| 54 | |
Damien Miller | 3bd49ec | 1999-11-15 15:40:55 +1100 | [diff] [blame] | 55 | #ifdef HAVE_NETGROUP_H |
| 56 | # include <netgroup.h> |
| 57 | #endif |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 58 | #ifdef HAVE_PATHS_H |
| 59 | # include <paths.h> |
| 60 | #endif |
| 61 | #ifdef HAVE_ENDIAN_H |
| 62 | # include <endian.h> |
| 63 | #endif |
Damien Miller | 4874c79 | 1999-11-16 13:29:26 +1100 | [diff] [blame] | 64 | #ifdef HAVE_SYS_SELECT_H |
| 65 | # include <sys/select.h> |
| 66 | #endif |
Damien Miller | b3ca3aa | 1999-11-22 13:57:07 +1100 | [diff] [blame] | 67 | #ifdef HAVE_SYS_TIME_H |
| 68 | # include <sys/time.h> |
| 69 | #endif |
Damien Miller | 4874c79 | 1999-11-16 13:29:26 +1100 | [diff] [blame] | 70 | #ifdef HAVE_LIBPAM |
| 71 | # include <security/pam_appl.h> |
Damien Miller | 04f8014 | 1999-11-19 15:32:34 +1100 | [diff] [blame] | 72 | #endif |
Damien Miller | ab18c41 | 1999-11-11 10:40:23 +1100 | [diff] [blame] | 73 | |
| 74 | #include "version.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 75 | #include "helper.h" |
Damien Miller | 04f8014 | 1999-11-19 15:32:34 +1100 | [diff] [blame] | 76 | #include "bsd-strlcpy.h" |
Damien Miller | b3ca3aa | 1999-11-22 13:57:07 +1100 | [diff] [blame] | 77 | #include "bsd-strlcat.h" |
Damien Miller | 04f8014 | 1999-11-19 15:32:34 +1100 | [diff] [blame] | 78 | #include "bsd-mktemp.h" |
Damien Miller | 42b81ff | 1999-11-26 12:21:24 +1100 | [diff] [blame] | 79 | #include "bsd-snprintf.h" |
Damien Miller | c6b3bbe | 1999-12-13 08:27:33 +1100 | [diff] [blame] | 80 | #include "bsd-daemon.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 81 | |
| 82 | /* Define this to be the path of the xauth program. */ |
| 83 | #ifndef XAUTH_PATH |
| 84 | #define XAUTH_PATH "/usr/X11R6/bin/xauth" |
| 85 | #endif /* XAUTH_PATH */ |
| 86 | |
| 87 | /* Define this to be the path of the rsh program. */ |
| 88 | #ifndef _PATH_RSH |
| 89 | #define _PATH_RSH "/usr/bin/rsh" |
| 90 | #endif /* _PATH_RSH */ |
| 91 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 92 | /* |
| 93 | * Define this to use pipes instead of socketpairs for communicating with the |
| 94 | * client program. Socketpairs do not seem to work on all systems. |
| 95 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 96 | #define USE_PIPES 1 |
| 97 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 98 | #endif /* INCLUDES_H */ |