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