updates.
[silc.git] / includes / silcincludes.h
1
2 /*
3
4   silcincludes.h
5
6   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
7
8   Copyright (C) 1997 - 2000 Pekka Riikonen
9
10   This program is free software; you can redistribute it and/or modify
11   it under the terms of the GNU General Public License as published by
12   the Free Software Foundation; either version 2 of the License, or
13   (at your option) any later version.
14   
15   This program is distributed in the hope that it will be useful,
16   but WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18   GNU General Public License for more details.
19
20 */
21 /*
22   This file includes common definitions for SILC. This file MUST be included
23   by all files in SILC (directly or through other global include file).
24 */
25
26 #ifndef SILCINCLUDES_H
27 #define SILCINCLUDES_H
28
29 /* Automatically generated configuration header */
30 #include "silcdefs.h"
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <unistd.h>
35 #include <string.h>
36 #include <stdarg.h>
37 #include <pwd.h>
38 #include <grp.h>
39
40 #include <ctype.h>
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <sys/time.h>
44 #include <sys/times.h>
45 #include <time.h>
46
47 #ifdef SOCKS5
48 #include "socks.h"
49 #endif
50
51 #ifdef HAVE_GETOPT_H
52 #include <getopt.h>
53 #endif
54
55 #ifdef HAVE_SIGNAL_H
56 #undef __USE_GNU
57 #include <signal.h>
58 #define __USE_GNU 1
59 #else
60 #error signal.h not found in the system
61 #endif
62
63 #ifdef HAVE_FCNTL_H
64 #include <fcntl.h>
65 #else
66 #error fcntl.h not found in the system
67 #endif
68
69 #ifdef HAVE_ASSERT_H
70 #include <errno.h>
71 #else
72 #error errno.h not found in the system
73 #endif
74
75 #ifdef HAVE_ASSERT_H
76 #include <assert.h>
77 #else
78 #error assert.h not found in the system
79 #endif
80
81 #include <sys/socket.h>
82 #ifdef HAVE_NETINET_IN_H
83 #include <netinet/in.h>
84 #else
85 #error netinet/in.h not found in the system
86 #endif
87
88 #ifdef HAVE_NETINET_TCP_H
89 #include <netinet/tcp.h>
90 #else
91 #error netinet/tcp.h not found in the system
92 #endif
93
94 #ifdef HAVE_NETDB_H
95 #include <netdb.h>
96 #else
97 #error netdb.h not found in the system
98 #endif
99
100 #ifdef HAVE_ARPA_INET_H
101 #include <arpa/inet.h>
102 #else
103 #error arpa/inet.h not found in the system
104 #endif
105
106 #ifdef HAVE_SYS_MMAN_H
107 #include <sys/mman.h>
108 #endif
109
110 #ifdef HAVE_DLFCN_H
111 #include <dlfcn.h>
112 #endif
113
114 #ifndef HAVE_GETOPT_LONG
115 #include "../lib/contrib/getopt.h"
116 #endif
117
118 #ifndef HAVE_REGEX_H
119 #include "../lib/contrib/regex.h"
120 #else
121 #include <regex.h>
122 #endif
123
124 #ifndef TRUE
125 #define TRUE 1
126 #endif
127 #ifndef FALSE
128 #define FALSE 0
129 #endif
130
131 /* Define types. The types must be at least of the specified size */
132 #undef uint8
133 #undef uint16
134 #undef uint32
135 #undef uin64
136 #undef int8
137 #undef int16
138 #undef int32
139 #undef int64
140
141 typedef unsigned char uint8;
142 typedef signed char int8;
143
144 #if SILC_SIZEOF_SHORT > 2
145 #error "size of the short must be 2 bytes"
146 #endif
147
148 typedef unsigned short uint16;
149 typedef signed short int16;
150
151 #if SILC_SIZEOF_LONG == 4
152 typedef unsigned long uint32;
153 typedef signed long int32;
154 #else
155 #if SILC_SIZEOF_INT == 4
156 typedef unsigned long uint32;
157 typedef signed long int32;
158 #else
159 #if SILC_SIZEOF_LONG_LONG >= 4
160 typedef unsigned long long uint32;
161 typedef signed long long int32;
162 #endif
163 #endif
164 #endif
165
166 #if SILC_SIZEOF_LONG >= 8
167 typedef unsigned long uint64;
168 typedef signed long int64;
169 #else
170 #if SILC_SIZEOF_LONG_LONG >= 8
171 typedef unsigned long long uint64;
172 typedef signed long long int64;
173 #else
174 typedef uint32 uint64;
175 typedef int32 int64;
176 #endif
177 #endif
178
179 #if SILC_SIZEOF_VOID_P < 4
180 typedef uint32 * void *;
181 #endif
182
183 #ifndef bool
184 #define bool unsigned char
185 #endif
186
187 /* Generic global SILC includes */
188 #include "bitmove.h"
189
190 /* Math library includes */
191 #include "silcmp.h"
192 #include "silcmath.h"
193
194 /* Crypto library includes */
195 #include "silccipher.h"
196 #include "silchash.h"
197 #include "silchmac.h"
198 #include "silcrng.h"
199 #include "silcpkcs.h"
200
201 /* SILC util library includes */
202 #include "silchashtable.h"
203 #include "silclog.h"
204 #include "silcmemory.h"
205 #include "silcbuffer.h"
206 #include "silcbufutil.h"
207 #include "silcbuffmt.h"
208 #include "silcnet.h"
209 #include "silcutil.h"
210 #include "silcconfig.h"
211 #include "silctask.h"
212 #include "silcschedule.h"
213
214 /* SILC core library includes */
215 #include "silcid.h"
216 #include "silcidcache.h"
217 #include "silcprotocol.h"
218 #include "silcsockconn.h"
219 #include "silcpayload.h"
220 #include "silccommand.h"
221 #include "silcchannel.h"
222 #include "silcpacket.h"
223 #include "silcnotify.h"
224 #include "silcmode.h"
225 #include "silcauth.h"
226 #include "silcprivate.h"
227
228 /* TRQ (SilcList API and SilcDList API) */
229 #include "silclist.h"
230 #include "silcdlist.h"
231
232 #ifdef SILC_SIM
233 /* SILC Module library includes */
234 #include "silcsim.h"
235 #include "silcsimutil.h"
236 #endif
237
238 /* SILC Key Exchange library includes */
239 #include "silcske.h"
240 #include "payload.h"
241 #include "groups.h"
242
243 #endif
244