#include "dynamic.h"
#include "base.h"
#include "ctables.h"
#include <string>
#include <deque>
#include <sstream>
Include dependency graph for modules.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
class | Admin |
Holds /ADMIN data This class contains the admin details of the local server. More... | |
class | ConfigReader |
Allows reading of values from configuration files This class allows a module to read from either the main configuration file (inspircd.conf) or from a module-specified configuration file. More... | |
class | Event |
The Event class is a unicast message directed at all modules. More... | |
class | FileReader |
Caches a text file into memory and can be used to retrieve lines from it. More... | |
class | Module |
Base class for all InspIRCd modules This class is the base class for InspIRCd modules. More... | |
class | ModuleFactory |
Instantiates classes inherited from Module This class creates a class inherited from type Module, using new. More... | |
class | ModuleMessage |
The ModuleMessage class is the base class of Request and Event This class is used to represent a basic data structure which is passed between modules for safe inter-module communications. More... | |
class | Request |
The Request class is a unicast message directed at a given module. More... | |
class | Server |
Allows server output and query functions This class contains methods which allow a module to query the state of the irc server, and produce output to users and other servers. More... | |
class | Version |
Holds a module's Version information The four members (set by the constructor only) indicate details as to the version number of a module. More... | |
Defines | |
#define | DEBUG 10 |
#define | VERBOSE 20 |
#define | DEFAULT 30 |
#define | SPARSE 40 |
#define | NONE 50 |
#define | MT_CHANNEL 1 |
#define | MT_CLIENT 2 |
#define | MT_SERVER 3 |
#define | ACR_DEFAULT 0 |
#define | ACR_DENY 1 |
#define | ACR_ALLOW 2 |
#define | AC_KICK 0 |
#define | AC_DEOP 1 |
#define | AC_OP 2 |
#define | AC_VOICE 3 |
#define | AC_DEVOICE 4 |
#define | AC_HALFOP 5 |
#define | AC_DEHALFOP 6 |
#define | AC_INVITE 7 |
#define | AC_GENERAL_MODE 8 |
#define | VF_STATIC 1 |
#define | VF_VENDOR 2 |
#define | VF_SERVICEPROVIDER 4 |
#define | VF_COMMON 8 |
#define | FOREACH_MOD for (int _i = 0; _i <= MODCOUNT; _i++) modules[_i]-> |
#define | FOREACH_RESULT(x) |
#define | FD_MAGIC_NUMBER -42 |
#define | CONF_NOT_A_NUMBER 0x000010 |
#define | CONF_NOT_UNSIGNED 0x000080 |
#define | CONF_VALUE_NOT_FOUND 0x000100 |
#define | CONF_FILE_NOT_FOUND 0x000200 |
Typedefs | |
typedef std::deque< std::string > | file_cache |
Low level definition of a FileReader classes file cache area. | |
typedef file_cache | string_list |
typedef std::deque< userrec * > | chanuserlist |
Holds a list of users in a channel. | |
typedef DLLFactory< ModuleFactory > | ircd_module |
Functions | |
void | createcommand (char *cmd, handlerfunc f, char flags, int minparams, char *source) |
void | server_mode (char **parameters, int pcnt, userrec *user) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 37 of file modules.h. Referenced by Module::OnAccessCheck(). |
|
|
|
Definition at line 1141 of file modules.h. Referenced by ConfigReader::ConfigReader(). |
|
Definition at line 1138 of file modules.h. Referenced by ConfigReader::ReadInteger(). |
|
Definition at line 1139 of file modules.h. Referenced by ConfigReader::ReadInteger(). |
|
Definition at line 1140 of file modules.h. Referenced by ConfigReader::ReadFlag(), ConfigReader::ReadInteger(), and ConfigReader::ReadValue(). |
|
Definition at line 23 of file modules.h. Referenced by Server::AddExtendedMode(), chanrec::AddUser(), chanrec::DelUser(), userrec::HasPermission(), chanrec::IsCustomModeSet(), userrec::RemoveInvite(), chanrec::SetCustomMode(), chanrec::SetCustomModeParam(), userrec::SetWriteError(), and Server::UserToPseudo(). |
|
|
|
Definition at line 99 of file modules.h. Referenced by Server::PseudoToUser(), and Server::UserToPseudo(). |
|
Definition at line 79 of file modules.h. Referenced by Event::Send(). |
|
Value: |
|
Definition at line 31 of file modules.h. Referenced by Server::AddExtendedListMode(), and ModeMakeList(). |
|
Definition at line 32 of file modules.h. Referenced by Server::AddExtendedMode(). |
|
Definition at line 33 of file modules.h. Referenced by Server::AddExtendedMode(). |
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 54 of file modules.h. Referenced by Module::GetVersion(). |
|
Holds a list of users in a channel.
Definition at line 72 of file modules.h. Referenced by Server::GetUsers(). |
|
Low level definition of a FileReader classes file cache area.
Definition at line 67 of file modules.h. Referenced by FileReader::FileReader(), and FileReader::LoadFile(). |
|
|
|
Definition at line 68 of file modules.h. Referenced by Module::OnChannelSync(), and Module::OnUserSync(). |
|
Referenced by Server::AddCommand(). |
|
Referenced by Server::SendMode(). |