1/*
2 * Copyright (c) 1998 - 2000 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$ */
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 <signal.h>
115#include <stdio.h>
116#include <stdlib.h>
117#include <stdarg.h>
118#include <string.h>
119#ifdef HAVE_SYSLOG_H
120#include <syslog.h>
121#endif
122#include <time.h>
123#ifdef HAVE_UNISTD_H
124#include <unistd.h>
125#endif
126#ifdef HAVE_GRP_H
127#include <grp.h>
128#endif
129#include <fnmatch.h>
130
131#ifdef HAVE_BSD_BSD_H
132#include <bsd/bsd.h>
133#endif
134
135#include <err.h>
136#include "roken.h"
137
138#include "pathnames.h"
139#include "extern.h"
140#include "common.h"
141
142#include "security.h"
143
144#ifdef KRB5
145#include <krb5.h>
146#endif /* KRB5 */
147
148#if defined(KRB5)
149#include <kafs.h>
150#endif
151
152#ifdef OTP
153#include <otp.h>
154#endif
155
156#ifdef SOCKS
157#include <socks.h>
158extern int LIBPREFIX(fclose)      (FILE *);
159#endif
160
161/* SunOS doesn't have any declaration of fclose */
162
163int fclose(FILE *stream);
164
165int yyparse(void);
166
167#ifndef LOG_FTP
168#define LOG_FTP LOG_DAEMON
169#endif
170
171#endif /* __ftpd_locl_h__ */
172