]> andersk Git - openssh.git/blob - includes.h
- Remove references to SSLeay.
[openssh.git] / includes.h
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) \
20 static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
21
22 #include "config.h"
23
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <sys/param.h>
27 #include <sys/ioctl.h>
28 #include <sys/stat.h>
29 #include <sys/wait.h>
30 #include <sys/un.h>
31 #include <sys/resource.h>
32
33 #include <netinet/tcp.h>
34 #include <arpa/inet.h>
35 #include <netdb.h>
36
37 #include <stdio.h>
38 #include <ctype.h>
39 #include <errno.h>
40 #include <fcntl.h>
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>
48 #include <unistd.h>
49 #include <time.h>
50 #include <dirent.h>
51
52 #ifdef HAVE_BSTRING_H
53 # include <bstring.h>
54 #endif 
55 #ifdef HAVE_NETGROUP_H
56 # include <netgroup.h>
57 #endif 
58 #ifdef HAVE_NETDB_H
59 # include <netdb.h>
60 #endif 
61 #ifdef HAVE_PATHS_H
62 # include <paths.h>
63 #endif 
64 #ifdef HAVE_ENDIAN_H
65 # include <endian.h>
66 #endif
67 #ifdef HAVE_SYS_SELECT_H
68 # include <sys/select.h>
69 #endif
70 #ifdef HAVE_SYS_TIME_H
71 # include <sys/time.h>
72 #endif
73 #ifdef HAVE_SYS_BSDTTY_H
74 # include <sys/bsdtty.h>
75 #endif
76 #ifdef USE_PAM
77 # include <security/pam_appl.h>
78 #endif
79 #ifdef HAVE_POLL_H
80 # include <poll.h>
81 #else
82 # ifdef HAVE_SYS_POLL_H
83 #  include <sys/poll.h>
84 # endif
85 #endif
86 #ifdef HAVE_SYS_SYSMACROS_H
87 # include <sys/sysmacros.h>
88 #endif
89
90 #include "version.h"
91
92 /* BSD function replacements */
93 #include "bsd-bindresvport.h"
94 #include "bsd-rresvport.h"
95 #include "bsd-misc.h"
96 #include "bsd-strlcpy.h"
97 #include "bsd-strlcat.h"
98 #include "bsd-mktemp.h"
99 #include "bsd-snprintf.h"
100 #include "bsd-daemon.h"
101 #include "bsd-login.h"
102 #include "bsd-base64.h"
103
104 /* rfc2553 socket API replacements */
105 #include "fake-getaddrinfo.h"
106 #include "fake-getnameinfo.h"
107 #include "fake-socket.h"
108
109 /* Entropy collection */
110 #include "entropy.h"
111
112 /* Define this to be the path of the xauth program. */
113 #ifndef XAUTH_PATH
114 #define XAUTH_PATH "/usr/X11R6/bin/xauth"
115 #endif /* XAUTH_PATH */
116
117 /* Define this to be the path of the rsh program. */
118 #ifndef _PATH_RSH
119 #define _PATH_RSH "/usr/bin/rsh"
120 #endif /* _PATH_RSH */
121
122 /*
123  * Define this to use pipes instead of socketpairs for communicating with the
124  * client program.  Socketpairs do not seem to work on all systems.
125  */
126 /* #define USE_PIPES 1 */
127
128 #endif                          /* INCLUDES_H */
This page took 0.071723 seconds and 5 git commands to generate.