X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=includes%2Fsilcincludes.h;h=c7182023028bd443f67b36dd1f12fde9c08223f8;hb=386c883d8774999c6e74d7c6c37e52e4163a4cb1;hp=9685d8ec5bc58925da478bd66809e6013984d248;hpb=cf85dae16c46b4b093ca41d91d777d2d26b4007c;p=silc.git diff --git a/includes/silcincludes.h b/includes/silcincludes.h index 9685d8ec..c7182023 100644 --- a/includes/silcincludes.h +++ b/includes/silcincludes.h @@ -1,11 +1,10 @@ - /* silcincludes.h - Author: Pekka Riikonen + Author: Pekka Riikonen - Copyright (C) 1997 - 2000 Pekka Riikonen + Copyright (C) 1997 - 2001 Pekka Riikonen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -29,33 +28,41 @@ /* Automatically generated configuration header */ #include "silcdefs.h" +#ifdef WIN32 +#ifndef SILC_WIN32 +#define SILC_WIN32 +#endif +#endif + +#if defined(__EPOC32__) +#ifndef SILC_EPOC +#define SILC_EPOC +#endif +#endif + +#ifdef SILC_WIN32 +#include "silcwin32.h" +#endif + +#ifdef SILC_EPOC +#include "silcepoc.h" +#endif + +#ifndef DLLAPI +#define DLLAPI +#endif + #include #include -#include #include #include -#include -#include - #include #include #include -#include -#include #include -#ifdef SOCKS5 -#include "socks.h" -#endif - -#ifdef HAVE_GETOPT_H -#include -#endif - #ifdef HAVE_SIGNAL_H -#undef __USE_GNU #include -#define __USE_GNU 1 #else #error signal.h not found in the system #endif @@ -66,7 +73,7 @@ #error fcntl.h not found in the system #endif -#ifdef HAVE_ASSERT_H +#ifdef HAVE_ERRNO_H #include #else #error errno.h not found in the system @@ -78,6 +85,22 @@ #error assert.h not found in the system #endif +#ifndef SILC_WIN32 + +#include +#include +#include +#include +#include + +#ifdef HAVE_GETOPT_H +#include +#endif + +#ifdef SOCKS5 +#include "socks.h" +#endif + #include #ifdef HAVE_NETINET_IN_H #include @@ -85,10 +108,14 @@ #error netinet/in.h not found in the system #endif +#ifdef HAVE_XTI_H +#include +#else #ifdef HAVE_NETINET_TCP_H #include #else -#error netinet/tcp.h not found in the system +#error xti.h nor even netinet/tcp.h found in the system +#endif #endif #ifdef HAVE_NETDB_H @@ -111,6 +138,26 @@ #include #endif +#ifdef HAVE_LIMITS_H +#include +#endif + +#ifndef HAVE_REGEX_H +#include "../lib/contrib/regex.h" +#else +#include +#endif + +#ifdef SILC_HAVE_PTHREAD +#include +#endif + +#ifdef HAVE_STDDEF_H +#include +#endif + +#endif /* !SILC_WIN32 */ + #ifndef HAVE_GETOPT_LONG #include "../lib/contrib/getopt.h" #endif @@ -122,14 +169,82 @@ #define FALSE 0 #endif +/* Define offsetof */ +#ifndef offsetof +#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) +#endif + +/* Define types. The types must be at least of the specified size */ +#undef uint8 +#undef uint16 +#undef uint32 +#undef uin64 +#undef int8 +#undef int16 +#undef int32 +#undef int64 + +typedef unsigned char uint8; +typedef signed char int8; + +#if SILC_SIZEOF_SHORT > 2 +#error "size of the short must be 2 bytes" +#endif + +typedef unsigned short uint16; +typedef signed short int16; + +#if SILC_SIZEOF_LONG == 4 +typedef unsigned long uint32; +typedef signed long int32; +#else +#if SILC_SIZEOF_INT == 4 +typedef unsigned long uint32; +typedef signed long int32; +#else +#if SILC_SIZEOF_LONG_LONG >= 4 +#ifndef WIN32 +typedef unsigned long long uint32; +typedef signed long long int32; +#endif +#endif +#endif +#endif + +#if SILC_SIZEOF_LONG >= 8 +typedef unsigned long uint64; +typedef signed long int64; +#else +#if SILC_SIZEOF_LONG_LONG >= 8 +#ifndef WIN32 +typedef unsigned long long uint64; +typedef signed long long int64; +#else +typedef uint32 uint64; /* XXX Use Windows's own 64 bit types */ +typedef int32 int64; +#endif +#else +typedef uint32 uint64; +typedef int32 int64; +#endif +#endif + +#if SILC_SIZEOF_VOID_P < 4 +typedef uint32 * void *; +#endif + +#ifndef __cplusplus +#ifndef bool +#define bool unsigned char +#endif +#endif + /* Generic global SILC includes */ #include "bitmove.h" /* Math library includes */ #include "silcmp.h" -#include "modinv.h" -#include "mpbin.h" -#include "silcprimegen.h" +#include "silcmath.h" /* Crypto library includes */ #include "silccipher.h" @@ -139,32 +254,34 @@ #include "silcpkcs.h" /* SILC util library includes */ +#include "silcmutex.h" +#include "silcthread.h" +#include "silcschedule.h" +#include "silchashtable.h" #include "silclog.h" #include "silcmemory.h" +#include "silclist.h" +#include "silcdlist.h" #include "silcbuffer.h" -#include "silcbufutil.h" #include "silcbuffmt.h" #include "silcnet.h" +#include "silcfileutil.h" #include "silcutil.h" #include "silcconfig.h" -#include "silctask.h" -#include "silcschedule.h" - -/* SILC core library includes */ -#include "id.h" -#include "idcache.h" #include "silcprotocol.h" #include "silcsockconn.h" -#include "silcpayload.h" + +/* SILC core library includes */ +#include "silcid.h" +#include "silcidcache.h" +#include "silcargument.h" #include "silccommand.h" #include "silcchannel.h" #include "silcpacket.h" #include "silcnotify.h" #include "silcmode.h" - -/* TRQ (SilcList API and SilcDList API) */ -#include "silclist.h" -#include "silcdlist.h" +#include "silcauth.h" +#include "silcprivate.h" #ifdef SILC_SIM /* SILC Module library includes */ @@ -174,8 +291,11 @@ /* SILC Key Exchange library includes */ #include "silcske.h" -#include "payload.h" -#include "groups.h" +#include "silcske_payload.h" +#include "silcske_groups.h" -#endif +/* SILC SFTP library */ +#include "silcsftp.h" +#include "silcsftp_fs.h" +#endif