diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-27 18:46:29 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-27 18:46:29 +0000 |
commit | 0afad3dfbca96a60bd14535cb93f27097417b933 (patch) | |
tree | 8a06fad263acc66a2d9ce18b393153ccb363df15 /include | |
parent | 8d7a4231075eaf72244dbf0da82052f71a89be58 (diff) |
Made config parsing code a bit more lenient
Added error checking to make sure opertypes exist before opering a user!
Added 005 handling for modules
Started on KILL event for modules
Started on OnModuleLoad event for modules
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@918 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/modules.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/modules.h b/include/modules.h index 81d76d55d..2146ec4a6 100644 --- a/include/modules.h +++ b/include/modules.h @@ -326,6 +326,34 @@ class Module : public classbase * multiple commands in the string_list. */ virtual string_list OnChannelSync(chanrec* chan); + + /** Called when a 005 numeric is about to be output. + * The module should modify the 005 numeric if needed to indicate its features. + */ + virtual void On005Numeric(std::string &output); + + /** Called when a client is disconnected by KILL. + * If a client is killed by a server, e.g. a nickname collision or protocol error, + * source is NULL. + * Return 1 from this function to prevent the kill, and 0 from this function to allow + * it as normal. If you prevent the kill no output will be sent to the client, it is + * down to your module to generate this information. + * NOTE: It is NOT advisable to stop kills which originate from servers. If you do + * so youre risking race conditions, desyncs and worse! + */ + virtual int OnKill(userrec* source, userrec* dest, std::string reason); + + /** Called whenever a module is loaded. + * mod will contain a pointer to the module, and string will contain its name, + * for example m_widgets.so. This function is primary for dependency checking, + * your module may decide to enable some extra features if it sees that you have + * for example loaded "m_killwidgets.so" with "m_makewidgets.so". It is highly + * recommended that modules do *NOT* bail if they cannot satisfy dependencies, + * but instead operate under reduced functionality, unless the dependency is + * absolutely neccessary (e.g. a module that extends the features of another + * module). + */ + virtual void OnLoadModule(Module* mod,std::string name); }; |