1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*******************************************************************************
* shroudBNC - an object-oriented framework for IRC *
* Copyright (C) 2005-2014 Gunnar Beutner *
* *
* 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 the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
*******************************************************************************/
#if !defined(_WIN32) || defined(__MINGW32__)
# include "../config.h"
#endif /* !_WIN32 || __MINGW32__ */
#include "../sbnc_version.h"
#ifdef _MSC_VER
#pragma warning ( disable : 4996 )
#pragma warning ( disable : 4251 )
#define _CRT_SECURE_NO_DEPRECATE
#undef _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES
#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
#endif /* _CRT_SECURE_NO_DEPRECATE */
#undef SFD_SETSIZE
#define SFD_SETSIZE 16384
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdarg.h>
#include <errno.h>
#include <time.h>
#include <assert.h>
#include <fcntl.h>
#include <signal.h>
#include <ctype.h>
#include <limits.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifndef _WIN32
# include <unistd.h>
# include <libgen.h>
#endif
#ifdef __cplusplus
# include <typeinfo>
# define min(x, y) ((x) < (y) ? (x) : (y))
# define max(x, y) ((x) < (y) ? (y) : (x))
#endif /* __cplusplus */
#ifdef _WIN32
# include "win32.h"
#else /* _WIN32 */
# include "unix.h"
#endif /* _WIN32 */
#ifndef _MSC_VER
# ifdef DLL_EXPORT
# undef DLL_EXPORT
# define WAS_DLL_EXPORT
# endif /* DLL_EXPORT */
# include "ltdl.h"
# ifdef WAS_DLL_EXPORT
# define DLL_EXPORT
# endif /* WAS_DLL_EXPORT */
#endif /* _MSC_VER */
#ifndef _WIN32
typedef lt_dlhandle HMODULE;
#endif /* _WIN32 */
#ifdef HAVE_LIBSSL
# include <openssl/bio.h>
# include <openssl/ssl.h>
# include <openssl/md5.h>
# include <openssl/err.h>
#else /* HAVE_LIBSSL */
typedef void SSL;
typedef void BIO;
typedef void SSL_CTX;
typedef void X509;
typedef void X509_STORE_CTX;
#endif /* HAVE_LIBSSL */
#ifndef HAVE_ASPRINTF
# include <snprintf.h>
#endif
#ifndef SWIG
# ifdef _WIN32
# define CARES_STATICLIB
# endif
# include <ares.h>
#endif /* SWIG */
#include <mmatch.h>
#ifdef __cplusplus
# include "sbnc.h"
# include "Result.h"
# include "Object.h"
# include "Vector.h"
# include "List.h"
# include "Hashtable.h"
# include "utility.h"
# include "SocketEvents.h"
# include "DnsSocket.h"
# include "DnsEvents.h"
# include "Timer.h"
# include "FIFOBuffer.h"
# include "Queue.h"
# include "Connection.h"
# include "Config.h"
# include "Cache.h"
# include "Core.h"
# include "ClientConnection.h"
# include "ClientConnectionMultiplexer.h"
# include "IRCConnection.h"
# include "User.h"
# include "Log.h"
# include "ModuleFar.h"
# include "Module.h"
# include "Banlist.h"
# include "Channel.h"
# include "Nick.h"
# include "Keyring.h"
# include "IdentSupport.h"
# include "TrafficStats.h"
# include "FloodControl.h"
# include "Listener.h"
#endif /* __cplusplus */
|