Change __signed to signed.
[dragonfly.git] / crypto / kerberosIV / appl / ftp / ftpd / ftpd_locl.h
1 /*
2  * Copyright (c) 1998, 1999 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * All rights reserved. 
5  *
6  * Redistribution and use in source and binary forms, with or without 
7  * modification, are permitted provided that the following conditions 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright 
14  *    notice, this list of conditions and the following disclaimer in the 
15  *    documentation and/or other materials provided with the distribution. 
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors 
18  *    may be used to endorse or promote products derived from this software 
19  *    without specific prior written permission. 
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
31  * SUCH DAMAGE. 
32  */
33
34 /* $Id: ftpd_locl.h,v 1.9 1999/12/02 16:58:30 joda Exp $ */
35
36 #ifndef __ftpd_locl_h__
37 #define __ftpd_locl_h__
38
39 #ifdef HAVE_CONFIG_H
40 #include <config.h>
41 #endif
42
43 /*
44  * FTP server.
45  */
46 #ifdef HAVE_SYS_TYPES_H
47 #include <sys/types.h>
48 #endif
49 #ifdef HAVE_SYS_PARAM_H
50 #include <sys/param.h>
51 #endif
52 #ifdef HAVE_SYS_STAT_H
53 #include <sys/stat.h>
54 #endif
55 #ifdef HAVE_SYS_SOCKET_H
56 #include <sys/socket.h>
57 #endif
58 #if defined(HAVE_SYS_IOCTL_H) && SunOS != 40
59 #include <sys/ioctl.h>
60 #endif
61 #ifdef HAVE_SYS_IOCCOM_H
62 #include <sys/ioccom.h>
63 #endif
64 #ifdef TIME_WITH_SYS_TIME
65 #include <sys/time.h>
66 #include <time.h>
67 #elif defined(HAVE_SYS_TIME_H)
68 #include <sys/time.h>
69 #else
70 #include <time.h>
71 #endif
72 #ifdef HAVE_SYS_RESOURCE_H
73 #include <sys/resource.h>
74 #endif
75 #ifdef HAVE_SYS_WAIT_H
76 #include <sys/wait.h>
77 #endif
78
79 #ifdef HAVE_NETINET_IN_H
80 #include <netinet/in.h>
81 #endif
82 #ifdef HAVE_NETINET_IN_SYSTM_H
83 #include <netinet/in_systm.h>
84 #endif
85 #ifdef HAVE_NETINET_IP_H
86 #include <netinet/ip.h>
87 #endif
88
89 #ifdef HAVE_SYS_MMAN_H
90 #include <sys/mman.h>
91 #endif
92
93 #include <arpa/ftp.h>
94 #ifdef HAVE_ARPA_INET_H
95 #include <arpa/inet.h>
96 #endif
97 #ifdef HAVE_ARPA_TELNET_H
98 #include <arpa/telnet.h>
99 #endif
100
101 #include <ctype.h>
102 #ifdef HAVE_DIRENT_H
103 #include <dirent.h>
104 #endif
105 #include <errno.h>
106 #ifdef HAVE_FCNTL_H
107 #include <fcntl.h>
108 #endif
109 #include <glob.h>
110 #include <limits.h>
111 #ifdef HAVE_PWD_H
112 #include <pwd.h>
113 #endif
114 #include <setjmp.h>
115 #include <signal.h>
116 #include <stdio.h>
117 #include <stdlib.h>
118 #include <stdarg.h>
119 #include <string.h>
120 #ifdef HAVE_SYSLOG_H
121 #include <syslog.h>
122 #endif
123 #include <time.h>
124 #ifdef HAVE_UNISTD_H
125 #include <unistd.h>
126 #endif
127 #ifdef HAVE_GRP_H
128 #include <grp.h>
129 #endif
130 #include <fnmatch.h>
131
132 #ifdef HAVE_BSD_BSD_H
133 #include <bsd/bsd.h>
134 #endif
135
136 #include <err.h>
137
138 #include "pathnames.h"
139 #include "extern.h"
140 #include "common.h"
141
142 #include "security.h"
143
144 #include "roken.h"
145
146 #ifdef KRB4
147 #include <krb.h>
148 #include <kafs.h>
149 #endif
150
151 #ifdef OTP
152 #include <otp.h>
153 #endif
154
155 #ifdef SOCKS
156 #include <socks.h>
157 extern int LIBPREFIX(fclose)      (FILE *);
158 #endif
159
160 /* SunOS doesn't have any declaration of fclose */
161
162 int fclose(FILE *stream);
163
164 int yyparse();
165
166 #ifndef LOG_FTP
167 #define LOG_FTP LOG_DAEMON
168 #endif
169
170 #endif /* __ftpd_locl_h__ */