#include "dynamic.h"
#include "base.h"
#include "ctables.h"
#include "socket.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.
Classes | |
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... | |
class | Admin |
Holds /ADMIN data This class contains the admin details of the local server. 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 | Event |
The Event class is a unicast message directed at all modules. More... | |
class | ExtMode |
Holds an extended mode's details. More... | |
class | Module |
Base class for all InspIRCd modules This class is the base class for InspIRCd modules. 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 | 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 | FileReader |
Caches a text file into memory and can be used to retrieve lines from it. More... | |
class | ModuleFactory |
Instantiates classes inherited from Module This class creates a class inherited from type Module, using new. More... | |
Defines | |
#define | DEBUG 10 |
log levels | |
#define | VERBOSE 20 |
#define | DEFAULT 30 |
#define | SPARSE 40 |
#define | NONE 50 |
#define | MT_CHANNEL 1 |
Used with OnExtendedMode() method of modules. | |
#define | MT_CLIENT 2 |
#define | MT_SERVER 3 |
#define | ACR_DEFAULT 0 |
Used with OnAccessCheck() method of modules. | |
#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 |
Used to define a set of behavior bits for a module. | |
#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) |
bool | ModeDefined (char c, int i) |
bool | ModeDefinedOper (char c, int i) |
int | ModeDefinedOn (char c, int i) |
int | ModeDefinedOff (char c, int i) |
void | ModeMakeList (char modechar) |
bool | ModeIsListMode (char modechar, int type) |
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 40 of file modules.h. Referenced by kick_channel(). |
|
|
|
|
|
|
|
Used with OnAccessCheck() method of modules.
Definition at line 37 of file modules.h. Referenced by kick_channel(), and Module::OnAccessCheck(). |
|
Definition at line 38 of file modules.h. Referenced by kick_channel(). |
|
Definition at line 1520 of file modules.h. Referenced by ConfigReader::ConfigReader(). |
|
Definition at line 1517 of file modules.h. Referenced by ConfigReader::ReadInteger(). |
|
Definition at line 1518 of file modules.h. Referenced by ConfigReader::ReadInteger(). |
|
Definition at line 1519 of file modules.h. Referenced by ConfigReader::ReadFlag(), ConfigReader::ReadInteger(), and ConfigReader::ReadValue(). |
|
log levels
|
|
|
|
Definition at line 101 of file modules.h. Referenced by Server::PseudoToUser(), and Server::UserToPseudo(). |
|
Definition at line 81 of file modules.h. Referenced by del_channel(), ForceChan(), kick_channel(), and Event::Send(). |
|
Value: { MOD_RESULT = 0; \ for (int _i = 0; _i <= MODCOUNT; _i++) { \ int res = modules[_i]->x ; \ if (res != 0) { \ MOD_RESULT = res; \ break; \ } \ } \ } Definition at line 89 of file modules.h. Referenced by add_channel(), and kick_channel(). |
|
Used with OnExtendedMode() method of modules.
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(). |
|
|
|
|
|
|
|
|
|
|
|
Used to define a set of behavior bits for a module.
|
|
Definition at line 53 of file modules.h. Referenced by Module::GetVersion(). |
|
Holds a list of users in a channel.
|
|
Low level definition of a FileReader classes file cache area.
|
|
|
|
|
|
Referenced by Server::AddCommand(). |
|
Definition at line 71 of file modules.cpp. References EMode. Referenced by DoAddExtendedMode(). 00072 { 00073 for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++) 00074 { 00075 if ((i->modechar == modechar) && (i->type == type)) 00076 { 00077 return true; 00078 } 00079 } 00080 return false; 00081 }
|
|
Definition at line 121 of file modules.cpp. References EMode. 00122 { 00123 for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++) 00124 { 00125 if ((i->modechar == modechar) && (i->type == type)) 00126 { 00127 return i->params_when_off; 00128 } 00129 } 00130 return 0; 00131 }
|
|
Definition at line 108 of file modules.cpp. References EMode. 00109 { 00110 for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++) 00111 { 00112 if ((i->modechar == modechar) && (i->type == type)) 00113 { 00114 return i->params_when_on; 00115 } 00116 } 00117 return 0; 00118 }
|
|
Definition at line 95 of file modules.cpp. References EMode. 00096 { 00097 for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++) 00098 { 00099 if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true)) 00100 { 00101 return true; 00102 } 00103 } 00104 return false; 00105 }
|
|
Definition at line 83 of file modules.cpp. References EMode. 00084 { 00085 for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++) 00086 { 00087 if ((i->modechar == modechar) && (i->type == type) && (i->list == true)) 00088 { 00089 return true; 00090 } 00091 } 00092 return false; 00093 }
|
|
Definition at line 144 of file modules.cpp. References EMode, and MT_CHANNEL. Referenced by Server::AddExtendedListMode(). 00145 { 00146 for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++) 00147 { 00148 if ((i->modechar == modechar) && (i->type == MT_CHANNEL)) 00149 { 00150 i->list = true; 00151 return; 00152 } 00153 } 00154 return; 00155 }
|
|
|