mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4298 e03df62e-2008-0410-955e-edbf42e46eb7
127 lines
3.1 KiB
C++
127 lines
3.1 KiB
C++
/* +------------------------------------+
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
* +------------------------------------+
|
|
*
|
|
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
|
|
* E-mail:
|
|
* <brain@chatspike.net>
|
|
* <Craig@chatspike.net>
|
|
*
|
|
* Written by Craig Edwards, Craig McLure, and others.
|
|
* This program is free but copyrighted software; see
|
|
* the file COPYING for details.
|
|
*
|
|
* ---------------------------------------------------
|
|
*/
|
|
|
|
#ifndef __INSPIRCD_H__
|
|
#define __INSPIRCD_H__
|
|
|
|
#include <time.h>
|
|
#include <string>
|
|
#include <sstream>
|
|
#include "inspircd_config.h"
|
|
#include "users.h"
|
|
#include "channels.h"
|
|
#include "socket.h"
|
|
#include "mode.h"
|
|
#include "helperfuncs.h"
|
|
#include "socketengine.h"
|
|
#include "command_parse.h"
|
|
|
|
/* Some misc defines */
|
|
#define ERROR -1
|
|
#define MAXCOMMAND 32
|
|
|
|
/* Crucial defines */
|
|
#define ETIREDGERBILS EAGAIN
|
|
|
|
/* This define is used in place of strcmp when we
|
|
* want to check if a char* string contains only one
|
|
* letter. Pretty fast, its just two compares and an
|
|
* addition.
|
|
*/
|
|
#define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) )
|
|
|
|
#define DELETE(x) { do_log(DEBUG,"%s:%d: delete()",__FILE__,__LINE__); if (x) { delete x; x = NULL; } else log(DEBUG,"Attempt to delete NULL pointer!"); }
|
|
|
|
template<typename T> inline std::string ConvToStr(const T &in)
|
|
{
|
|
std::stringstream tmp;
|
|
if (!(tmp << in)) return std::string();
|
|
return tmp.str();
|
|
}
|
|
|
|
class serverstats : public classbase
|
|
{
|
|
public:
|
|
int statsAccept;
|
|
int statsRefused;
|
|
int statsUnknown;
|
|
int statsCollisions;
|
|
int statsDns;
|
|
int statsDnsGood;
|
|
int statsDnsBad;
|
|
int statsConnects;
|
|
int statsSent;
|
|
int statsRecv;
|
|
int BoundPortCount;
|
|
|
|
serverstats()
|
|
{
|
|
statsAccept = statsRefused = statsUnknown = 0;
|
|
statsCollisions = statsDns = statsDnsGood = 0;
|
|
statsDnsBad = statsConnects = statsSent = statsRecv = 0;
|
|
BoundPortCount = 0;
|
|
}
|
|
};
|
|
|
|
|
|
class InspIRCd : public classbase
|
|
{
|
|
private:
|
|
char MODERR[MAXBUF];
|
|
bool expire_run;
|
|
|
|
void EraseFactory(int j);
|
|
void EraseModule(int j);
|
|
void BuildISupport();
|
|
void MoveTo(std::string modulename,int slot);
|
|
void Start();
|
|
void SetSignals();
|
|
bool DaemonSeed();
|
|
void MakeLowerMap();
|
|
void MoveToLast(std::string modulename);
|
|
void MoveToFirst(std::string modulename);
|
|
void MoveAfter(std::string modulename, std::string after);
|
|
void MoveBefore(std::string modulename, std::string before);
|
|
|
|
public:
|
|
time_t startup_time;
|
|
ModeParser* ModeGrok;
|
|
CommandParser* Parser;
|
|
SocketEngine* SE;
|
|
serverstats* stats;
|
|
|
|
std::string GetRevision();
|
|
std::string GetVersionString();
|
|
void WritePID(const std::string &filename);
|
|
char* ModuleError();
|
|
bool LoadModule(const char* filename);
|
|
bool UnloadModule(const char* filename);
|
|
InspIRCd(int argc, char** argv);
|
|
void DoOneIteration(bool process_module_sockets);
|
|
int Run();
|
|
|
|
};
|
|
|
|
/* Miscellaneous stuff here, moved from inspircd_io.h */
|
|
void Exit(int status);
|
|
|
|
/* userrec optimization stuff */
|
|
void AddServerName(const std::string &servername);
|
|
const char* FindServerNamePtr(const std::string &servername);
|
|
bool FindServerName(const std::string &servername);
|
|
|
|
#endif
|