1/*
2 * Copyright (c) 1995 - 2001 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 __FTP_LOCL_H__
37#define __FTP_LOCL_H__
38
39#ifdef HAVE_CONFIG_H
40#include <config.h>
41#endif
42
43#ifdef HAVE_PWD_H
44#include <pwd.h>
45#endif
46#include <signal.h>
47#include <stdio.h>
48#include <stdlib.h>
49#include <stdarg.h>
50#include <string.h>
51#ifdef TIME_WITH_SYS_TIME
52#include <sys/time.h>
53#include <time.h>
54#elif defined(HAVE_SYS_TIME_H)
55#include <sys/time.h>
56#else
57#include <time.h>
58#endif
59#ifdef HAVE_UNISTD_H
60#include <unistd.h>
61#endif
62
63#ifdef HAVE_SYS_TYPES_H
64#include <sys/types.h>
65#endif
66#ifdef HAVE_SYS_PARAM_H
67#include <sys/param.h>
68#endif
69#ifdef HAVE_SYS_RESOURCE_H
70#include <sys/resource.h>
71#endif
72#ifdef HAVE_SYS_WAIT_H
73#include <sys/wait.h>
74#endif
75#ifdef HAVE_SYS_STAT_H
76#include <sys/stat.h>
77#endif
78#ifdef HAVE_SYS_SOCKET_H
79#include <sys/socket.h>
80#endif
81
82#ifdef HAVE_NETINET_IN_H
83#include <netinet/in.h>
84#endif
85#ifdef HAVE_NETINET_IN_SYSTM_H
86#include <netinet/in_systm.h>
87#endif
88#ifdef HAVE_NETINET_IP_H
89#include <netinet/ip.h>
90#endif
91
92#ifdef HAVE_ARPA_FTP_H
93#include <arpa/ftp.h>
94#endif
95#ifdef HAVE_ARPA_INET_H
96#include <arpa/inet.h>
97#endif
98#ifdef HAVE_ARPA_TELNET_H
99#include <arpa/telnet.h>
100#endif
101
102#include <errno.h>
103#include <ctype.h>
104#include <glob.h>
105#ifdef HAVE_NETDB_H
106#include <netdb.h>
107#endif
108
109#ifdef HAVE_SYS_MMAN_H
110#include <sys/mman.h>
111#endif
112
113#include <err.h>
114
115#ifdef SOCKS
116#include <socks.h>
117extern int LIBPREFIX(fclose)      (FILE *);
118
119/* This doesn't belong here. */
120struct tm *localtime(const time_t *);
121struct hostent  *gethostbyname(const char *);
122
123#endif
124
125#include "ftp_var.h"
126#include "extern.h"
127#include "common.h"
128#include "pathnames.h"
129
130#include "roken.h"
131#include "security.h"
132
133/* des_read_pw_string */
134#include "crypto-headers.h"
135
136#if defined(__sun__) && !defined(__svr4)
137int fclose(FILE*);
138int pclose(FILE*);
139#endif
140
141#endif /* __FTP_LOCL_H__ */
142