Main Page | Namespace List | Class Hierarchy | Alphabetical List | Compound List | File List | Compound Members | File Members

Module Class Reference

Base class for all InspIRCd modules This class is the base class for InspIRCd modules. More...

#include <modules.h>

Inherits classbase.

List of all members.

Public Member Functions

 Module ()
 Default constructor creates a module class.

virtual ~Module ()
 Default destructor destroys a module class.

virtual Version GetVersion ()
 Returns the version number of a Module.

virtual void OnUserConnect (userrec *user)
 Called when a user connects.

virtual void OnUserQuit (userrec *user)
 Called when a user quits.

virtual void OnUserDisconnect (userrec *user)
 Called whenever a user's socket is closed.

virtual void OnUserJoin (userrec *user, chanrec *channel)
 Called when a user joins a channel.

virtual void OnUserPart (userrec *user, chanrec *channel)
 Called when a user parts a channel.

virtual void OnPacketTransmit (std::string &data, std::string serv)
 Called before a packet is transmitted across the irc network between two irc servers.

virtual void OnPacketReceive (std::string &data, std::string serv)
 Called after a packet is received from another irc server.

virtual void OnRehash ()
 Called on rehash.

virtual void OnServerRaw (std::string &raw, bool inbound, userrec *user)
 Called when a raw command is transmitted or received.

virtual int OnExtendedMode (userrec *user, void *target, char modechar, int type, bool mode_on, string_list &params)
 Called whenever an extended mode is to be processed.

virtual int OnUserPreJoin (userrec *user, chanrec *chan, const char *cname)
 Called whenever a user is about to join a channel, before any processing is done.

virtual int OnUserPreKick (userrec *source, userrec *user, chanrec *chan, std::string reason)
 Called whenever a user is about to be kicked.

virtual void OnUserKick (userrec *source, userrec *user, chanrec *chan, std::string reason)
 Called whenever a user is kicked.

virtual void OnOper (userrec *user)
 Called whenever a user opers locally.

virtual void OnInfo (userrec *user)
 Called whenever a user types /INFO.

virtual void OnWhois (userrec *source, userrec *dest)
 Called whenever a /WHOIS is performed on a local user.

virtual int OnUserPreInvite (userrec *source, userrec *dest, chanrec *channel)
 Called whenever a user is about to invite another user into a channel, before any processing is done.

virtual int OnUserPreMessage (userrec *user, void *dest, int target_type, std::string &text)
 Called whenever a user is about to PRIVMSG A user or a channel, before any processing is done.

virtual int OnUserPreNotice (userrec *user, void *dest, int target_type, std::string &text)
 Called whenever a user is about to NOTICE A user or a channel, before any processing is done.

virtual int OnUserPreNick (userrec *user, std::string newnick)
 Called before any nickchange, local or remote.

virtual void OnUserPostNick (userrec *user, std::string oldnick)
 Called after any nickchange, local or remote.

virtual int OnAccessCheck (userrec *source, userrec *dest, chanrec *channel, int access_type)
 Called before an action which requires a channel privilage check.

virtual string_list OnUserSync (userrec *user)
 Called during a netburst to sync user data.

virtual string_list OnChannelSync (chanrec *chan)
 Called during a netburst to sync channel data.

virtual void On005Numeric (std::string &output)
 Called when a 005 numeric is about to be output.

virtual int OnKill (userrec *source, userrec *dest, std::string reason)
 Called when a client is disconnected by KILL.

virtual void OnLoadModule (Module *mod, std::string name)
 Called whenever a module is loaded.

virtual void OnBackgroundTimer (time_t curtime)
 Called once every five seconds for background processing.

virtual void OnSendList (userrec *user, chanrec *channel, char mode)
 Called whenever a list is needed for a listmode.

virtual int OnPreCommand (std::string command, char **parameters, int pcnt, userrec *user)
 Called whenever any command is about to be executed.

virtual bool OnCheckReady (userrec *user)
 Called to check if a user who is connecting can now be allowed to register If any modules return false for this function, the user is held in the waiting state until all modules return true.

virtual void OnUserRegister (userrec *user)
 Called whenever a user is about to register their connection (e.g.

virtual int OnRawMode (userrec *user, chanrec *chan, char mode, std::string param, bool adding, int pcnt)
 Called whenever a mode character is processed.

virtual int OnCheckInvite (userrec *user, chanrec *chan)
 Called whenever a user joins a channel, to determine if invite checks should go ahead or not.

virtual int OnCheckKey (userrec *user, chanrec *chan, std::string keygiven)
 Called whenever a user joins a channel, to determine if key checks should go ahead or not.

virtual int OnCheckLimit (userrec *user, chanrec *chan)
 Called whenever a user joins a channel, to determine if channel limit checks should go ahead or not.

virtual int OnCheckBan (userrec *user, chanrec *chan)
 Called whenever a user joins a channel, to determine if banlist checks should go ahead or not.

virtual void OnStats (char symbol)
 Called on all /STATS commands This method is triggered for all /STATS use, including stats symbols handled by the core.

virtual int OnChangeLocalUserHost (userrec *user, std::string newhost)
 Called whenever a change of a local users displayed host is attempted.

virtual int OnChangeLocalUserGECOS (userrec *user, std::string newhost)
 Called whenever a change of a local users GECOS (fullname field) is attempted.

virtual int OnLocalTopicChange (userrec *user, chanrec *chan, std::string topic)
 Called whenever a topic is changed by a local user.

virtual int OnMeshToken (char token, string_list params, serverrec *source, serverrec *reply, std::string tcp_host, std::string ipaddr, int port)
 Called whenever an unknown token is received in a server to server link.

virtual void OnEvent (Event *event)
 Called whenever an Event class is sent to all module by another module.

virtual char * OnRequest (Request *request)
 Called whenever a Request class is sent to your module by another module.


Detailed Description

Base class for all InspIRCd modules This class is the base class for InspIRCd modules.

All modules must inherit from this class, its methods will be called when irc server events occur. class inherited from module must be instantiated by the ModuleFactory class (see relevent section) for the plugin to be initialised.

Definition at line 233 of file modules.h.


Constructor & Destructor Documentation

Module::Module  ) 
 

Default constructor creates a module class.

Definition at line 361 of file modules.cpp.

00361 { }

Module::~Module  )  [virtual]
 

Default destructor destroys a module class.

Definition at line 362 of file modules.cpp.

00362 { }


Member Function Documentation

Version Module::GetVersion  )  [virtual]
 

Returns the version number of a Module.

The method should return a Version object with its version information assigned via Version::Version

Definition at line 374 of file modules.cpp.

References VF_VENDOR.

00374 { return Version(1,0,0,0,VF_VENDOR); }

void Module::On005Numeric std::string &  output  )  [virtual]
 

Called when a 005 numeric is about to be output.

The module should modify the 005 numeric if needed to indicate its features.

Definition at line 386 of file modules.cpp.

00386 { };

int Module::OnAccessCheck userrec source,
userrec dest,
chanrec channel,
int  access_type
[virtual]
 

Called before an action which requires a channel privilage check.

This function is called before many functions which check a users status on a channel, for example before opping a user, deopping a user, kicking a user, etc. There are several values for access_type which indicate for what reason access is being checked. These are:

AC_KICK (0) - A user is being kicked
AC_DEOP (1) - a user is being deopped
AC_OP (2) - a user is being opped
AC_VOICE (3) - a user is being voiced
AC_DEVOICE (4) - a user is being devoiced
AC_HALFOP (5) - a user is being halfopped
AC_DEHALFOP (6) - a user is being dehalfopped
AC_INVITE (7) - a user is being invited
AC_GENERAL_MODE (8) - a user channel mode is being changed

Upon returning from your function you must return either ACR_DEFAULT, to indicate the module wishes to do nothing, or ACR_DENY where approprate to deny the action, and ACR_ALLOW where appropriate to allow the action. Please note that in the case of some access checks (such as AC_GENERAL_MODE) access may be denied 'upstream' causing other checks such as AC_DEOP to not be reached. Be very careful with use of the AC_GENERAL_MODE type, as it may inadvertently override the behaviour of other modules. When the access_type is AC_GENERAL_MODE, the destination of the mode will be NULL (as it has not yet been determined).

Definition at line 383 of file modules.cpp.

References ACR_DEFAULT.

00383 { return ACR_DEFAULT; };

void Module::OnBackgroundTimer time_t  curtime  )  [virtual]
 

Called once every five seconds for background processing.

This timer can be used to control timed features. Its period is not accurate enough to be used as a clock, but it is gauranteed to be called at least once in any five second period, directly from the main loop of the server.

Definition at line 389 of file modules.cpp.

00389 { };

int Module::OnChangeLocalUserGECOS userrec user,
std::string  newhost
[virtual]
 

Called whenever a change of a local users GECOS (fullname field) is attempted.

return 1 to deny the name change, or 0 to allow it.

Definition at line 403 of file modules.cpp.

00403 { return 0; };

int Module::OnChangeLocalUserHost userrec user,
std::string  newhost
[virtual]
 

Called whenever a change of a local users displayed host is attempted.

Return 1 to deny the host change, or 0 to allow it.

Definition at line 402 of file modules.cpp.

00402 { return 0; };

string_list Module::OnChannelSync chanrec chan  )  [virtual]
 

Called during a netburst to sync channel data.

This is called during the netburst on a per-channel basis. You should use this call to up any special channel-related things which are implemented by your module, e.g. sending listmodes. You may return multiple commands in the string_list.

Definition at line 385 of file modules.cpp.

References string_list.

00385 { string_list empty; return empty; }

int Module::OnCheckBan userrec user,
chanrec chan
[virtual]
 

Called whenever a user joins a channel, to determine if banlist checks should go ahead or not.

This method will always be called for each join, wether or not the user actually matches a channel ban, and determines the outcome of an if statement around the whole section of ban checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event.

Definition at line 400 of file modules.cpp.

00400 { return 0; };

int Module::OnCheckInvite userrec user,
chanrec chan
[virtual]
 

Called whenever a user joins a channel, to determine if invite checks should go ahead or not.

This method will always be called for each join, wether or not the channel is actually +i, and determines the outcome of an if statement around the whole section of invite checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event.

Definition at line 397 of file modules.cpp.

00397 { return 0; };

int Module::OnCheckKey userrec user,
chanrec chan,
std::string  keygiven
[virtual]
 

Called whenever a user joins a channel, to determine if key checks should go ahead or not.

This method will always be called for each join, wether or not the channel is actually +k, and determines the outcome of an if statement around the whole section of key checking code. if the user specified no key, the keygiven string will be a valid but empty value. return 1 to explicitly allow the join to go ahead or 0 to ignore the event.

Definition at line 398 of file modules.cpp.

00398 { return 0; };

int Module::OnCheckLimit userrec user,
chanrec chan
[virtual]
 

Called whenever a user joins a channel, to determine if channel limit checks should go ahead or not.

This method will always be called for each join, wether or not the channel is actually +l, and determines the outcome of an if statement around the whole section of channel limit checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event.

Definition at line 399 of file modules.cpp.

00399 { return 0; };

bool Module::OnCheckReady userrec user  )  [virtual]
 

Called to check if a user who is connecting can now be allowed to register If any modules return false for this function, the user is held in the waiting state until all modules return true.

For example a module which implements ident lookups will continue to return false for a user until their ident lookup is completed. Note that the registration timeout for a user overrides these checks, if the registration timeout is reached, the user is disconnected even if modules report that the user is not ready to connect.

Definition at line 392 of file modules.cpp.

00392 { return true; };

void Module::OnEvent Event event  )  [virtual]
 

Called whenever an Event class is sent to all module by another module.

Please see the documentation of Event::Send() for further information. The Event sent can always be assumed to be non-NULL, you should *always* check the value of Event::GetEventID() before doing anything to the event data, and you should *not* change the event data in any way!

Definition at line 406 of file modules.cpp.

00406 { return; };

int Module::OnExtendedMode userrec user,
void *  target,
char  modechar,
int  type,
bool  mode_on,
string_list params
[virtual]
 

Called whenever an extended mode is to be processed.

The type parameter is MT_SERVER, MT_CLIENT or MT_CHANNEL, dependent on where the mode is being changed. mode_on is set when the mode is being set, in which case params contains a list of parameters for the mode as strings. If mode_on is false, the mode is being removed, and parameters may contain the parameters for the mode, dependent on wether they were defined when a mode handler was set up with Server::AddExtendedMode If the mode is a channel mode, target is a chanrec*, and if it is a user mode, target is a userrec*. You must cast this value yourself to make use of it.

Definition at line 373 of file modules.cpp.

00373 { return false; }

void Module::OnInfo userrec user  )  [virtual]
 

Called whenever a user types /INFO.

The userrec will contain the information of the user who typed the command. Modules may use this method to output their own credits in /INFO (which is the ircd's version of an about box). It is purposefully not possible to modify any info that has already been output, or halt the list. You must write a 371 numeric to the user, containing your info in the following format:

<nick> :information here

Definition at line 376 of file modules.cpp.

00376 { };

int Module::OnKill userrec source,
userrec dest,
std::string  reason
[virtual]
 

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!

Definition at line 387 of file modules.cpp.

00387 { return 0; };

void Module::OnLoadModule Module mod,
std::string  name
[virtual]
 

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).

Definition at line 388 of file modules.cpp.

00388 { };

int Module::OnLocalTopicChange userrec user,
chanrec chan,
std::string  topic
[virtual]
 

Called whenever a topic is changed by a local user.

Return 1 to deny the topic change, or 0 to allow it.

Definition at line 404 of file modules.cpp.

00404 { return 0; };

int Module::OnMeshToken char  token,
string_list  params,
serverrec source,
serverrec reply,
std::string  tcp_host,
std::string  ipaddr,
int  port
[virtual]
 

Called whenever an unknown token is received in a server to server link.

The token value is the unknown token -- please check that no other modules are using the token that you use. Returning 1 supresses the 'unknown token type' error which is usually sent to all opers with +s. The params list is a list of parameters, and if any parameters start with a colon (:) it is treated as the whole of the last parameter, identical to how RFC messages are handled. source is the sender of the message, and reply is what should be replied to for a unicast message. Note that there are not many messages in the mesh protocol which require unicast messaging. tcp_host is the server name as a string, ipaddr is its ip address in dotted decimal notation and port is the port number it is using.

Definition at line 405 of file modules.cpp.

00405 { return 0; };

void Module::OnOper userrec user  )  [virtual]
 

Called whenever a user opers locally.

The userrec will contain the oper mode 'o' as this function is called after any modifications are made to the user's structure by the core.

Definition at line 375 of file modules.cpp.

00375 { };

void Module::OnPacketReceive std::string &  data,
std::string  serv
[virtual]
 

Called after a packet is received from another irc server.

This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called immediately after the packet is received but before any other operations with the core of the ircd.

Definition at line 369 of file modules.cpp.

00369 { }

void Module::OnPacketTransmit std::string &  data,
std::string  serv
[virtual]
 

Called before a packet is transmitted across the irc network between two irc servers.

This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called before ANY other operations within the ircd core program.

Definition at line 368 of file modules.cpp.

00368 { }

int Module::OnPreCommand std::string  command,
char **  parameters,
int  pcnt,
userrec user
[virtual]
 

Called whenever any command is about to be executed.

This event occurs for all registered commands, wether they are registered in the core, or another module, but it will not occur for invalid commands (e.g. ones which do not exist within the command table). By returning 1 from this method you may prevent the command being executed. If you do this, no output is created by the core, and it is down to your module to produce any output neccessary. Note that unless you return 1, you should not destroy any structures (e.g. by using Server::QuitUser) otherwise when the command's handler function executes after your method returns, it will be passed an invalid pointer to the user object and crash!)

Definition at line 391 of file modules.cpp.

00391 { return 0; };

int Module::OnRawMode userrec user,
chanrec chan,
char  mode,
std::string  param,
bool  adding,
int  pcnt
[virtual]
 

Called whenever a mode character is processed.

Return 1 from this function to block the mode character from being processed entirely, so that you may perform your own code instead. Note that this method allows you to override modes defined by other modes, but this is NOT RECOMMENDED!

Definition at line 396 of file modules.cpp.

00396 { return 0; };

void Module::OnRehash  )  [virtual]
 

Called on rehash.

This method is called prior to a /REHASH or when a SIGHUP is received from the operating system. You should use it to reload any files so that your module keeps in step with the rest of the application.

Definition at line 370 of file modules.cpp.

00370 { }

char * Module::OnRequest Request request  )  [virtual]
 

Called whenever a Request class is sent to your module by another module.

Please see the documentation of Request::Send() for further information. The Request sent can always be assumed to be non-NULL, you should not change the request object or its data. Your method may return arbitary data in the char* result which the requesting module may be able to use for pre-determined purposes (e.g. the results of an SQL query, etc).

Definition at line 407 of file modules.cpp.

Referenced by Request::Send().

00407 { return NULL; };

void Module::OnSendList userrec user,
chanrec channel,
char  mode
[virtual]
 

Called whenever a list is needed for a listmode.

For example, when a /MODE #channel +b (without any other parameters) is called, if a module was handling +b this function would be called. The function can then output any lists it wishes to. Please note that all modules will see all mode characters to provide the ability to extend each other, so please only output a list if the mode character given matches the one(s) you want to handle.

Definition at line 390 of file modules.cpp.

00390 { };

void Module::OnServerRaw std::string &  raw,
bool  inbound,
userrec user
[virtual]
 

Called when a raw command is transmitted or received.

This method is the lowest level of handler available to a module. It will be called with raw data which is passing through a connected socket. If you wish, you may munge this data by changing the string parameter "raw". If you do this, after your function exits it will immediately be cut down to 510 characters plus a carriage return and linefeed. For INBOUND messages only (where inbound is set to true) the value of user will be the userrec of the connection sending the data. This is not possible for outbound data because the data may be being routed to multiple targets.

Definition at line 371 of file modules.cpp.

00371 { }

void Module::OnStats char  symbol  )  [virtual]
 

Called on all /STATS commands This method is triggered for all /STATS use, including stats symbols handled by the core.

Definition at line 401 of file modules.cpp.

00401 { };

void Module::OnUserConnect userrec user  )  [virtual]
 

Called when a user connects.

The details of the connecting user are available to you in the parameter userrec *user

Definition at line 363 of file modules.cpp.

00363 { }

void Module::OnUserDisconnect userrec user  )  [virtual]
 

Called whenever a user's socket is closed.

The details of the exiting user are available to you in the parameter userrec *user This event is called for all users, registered or not, as a cleanup method for modules which might assign resources to user, such as dns lookups, objects and sockets.

Definition at line 365 of file modules.cpp.

00365 { }

void Module::OnUserJoin userrec user,
chanrec channel
[virtual]
 

Called when a user joins a channel.

The details of the joining user are available to you in the parameter userrec *user, and the details of the channel they have joined is available in the variable chanrec *channel

Definition at line 366 of file modules.cpp.

00366 { }

void Module::OnUserKick userrec source,
userrec user,
chanrec chan,
std::string  reason
[virtual]
 

Called whenever a user is kicked.

If this method is called, the kick is already underway and cannot be prevented, so to prevent a kick, please use Module::OnUserPreKick instead of this method.

Definition at line 395 of file modules.cpp.

00395 { };

void Module::OnUserPart userrec user,
chanrec channel
[virtual]
 

Called when a user parts a channel.

The details of the leaving user are available to you in the parameter userrec *user, and the details of the channel they have left is available in the variable chanrec *channel

Definition at line 367 of file modules.cpp.

00367 { }

void Module::OnUserPostNick userrec user,
std::string  oldnick
[virtual]
 

Called after any nickchange, local or remote.

This can be used to track users after nickchanges have been applied. Please note that although you can see remote nickchanges through this function, you should NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. check user->server before taking any action (including returning nonzero from the method). Because this method is called after the nickchange is taken place, no return values are possible to indicate forbidding of the nick change. Use OnUserPreNick for this.

Definition at line 382 of file modules.cpp.

00382 { };

int Module::OnUserPreInvite userrec source,
userrec dest,
chanrec channel
[virtual]
 

Called whenever a user is about to invite another user into a channel, before any processing is done.

Returning 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter invites to channels.

Definition at line 378 of file modules.cpp.

00378 { return 0; };

int Module::OnUserPreJoin userrec user,
chanrec chan,
const char *  cname
[virtual]
 

Called whenever a user is about to join a channel, before any processing is done.

Returning a value of 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to mimic +b, +k, +l etc. Returning -1 from this function forces the join to be allowed, bypassing restrictions such as banlists, invite, keys etc.

IMPORTANT NOTE!

If the user joins a NEW channel which does not exist yet, OnUserPreJoin will be called BEFORE the channel record is created. This will cause chanrec* chan to be NULL. There is very little you can do in form of processing on the actual channel record at this point, however the channel NAME will still be passed in char* cname, so that you could for example implement a channel blacklist or whitelist, etc.

Definition at line 372 of file modules.cpp.

00372 { return 0; }

int Module::OnUserPreKick userrec source,
userrec user,
chanrec chan,
std::string  reason
[virtual]
 

Called whenever a user is about to be kicked.

Returning a value of 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc.

Definition at line 394 of file modules.cpp.

00394 { return 0; };

int Module::OnUserPreMessage userrec user,
void *  dest,
int  target_type,
std::string &  text
[virtual]
 

Called whenever a user is about to PRIVMSG A user or a channel, before any processing is done.

Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent.

Definition at line 379 of file modules.cpp.

00379 { return 0; };

int Module::OnUserPreNick userrec user,
std::string  newnick
[virtual]
 

Called before any nickchange, local or remote.

This can be used to implement Q-lines etc. Please note that although you can see remote nickchanges through this function, you should NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. check user->server before taking any action (including returning nonzero from the method). If your method returns nonzero, the nickchange is silently forbidden, and it is down to your module to generate some meaninful output.

Definition at line 381 of file modules.cpp.

00381 { return 0; };

int Module::OnUserPreNotice userrec user,
void *  dest,
int  target_type,
std::string &  text
[virtual]
 

Called whenever a user is about to NOTICE A user or a channel, before any processing is done.

Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent. You may alter the message text as you wish before relinquishing control to the next module in the chain, and if no other modules block the text this altered form of the text will be sent out to the user and possibly to other servers.

Definition at line 380 of file modules.cpp.

00380 { return 0; };

void Module::OnUserQuit userrec user  )  [virtual]
 

Called when a user quits.

The details of the exiting user are available to you in the parameter userrec *user This event is only called when the user is fully registered when they quit. To catch raw disconnections, use the OnUserDisconnect method.

Definition at line 364 of file modules.cpp.

00364 { }

void Module::OnUserRegister userrec user  )  [virtual]
 

Called whenever a user is about to register their connection (e.g.

before the user is sent the MOTD etc). Modules can use this method if they are performing a function which must be done before the actual connection is completed (e.g. ident lookups, dnsbl lookups, etc). Note that you should NOT delete the user record here by causing a disconnection! Use OnUserConnect for that instead.

Definition at line 393 of file modules.cpp.

00393 { };

string_list Module::OnUserSync userrec user  )  [virtual]
 

Called during a netburst to sync user data.

This is called during the netburst on a per-user basis. You should use this call to up any special user-related things which are implemented by your module, e.g. sending listmodes. You may return multiple commands in the string_list.

Definition at line 384 of file modules.cpp.

References string_list.

00384 { string_list empty; return empty; }

void Module::OnWhois userrec source,
userrec dest
[virtual]
 

Called whenever a /WHOIS is performed on a local user.

The source parameter contains the details of the user who issued the WHOIS command, and the dest parameter contains the information of the user they are whoising.

Definition at line 377 of file modules.cpp.

00377 { };


The documentation for this class was generated from the following files:
Generated on Wed Apr 20 15:47:06 2005 for InspIRCd by doxygen 1.3.3