|
|||
|
|||
|
#include <cmd_mode.h>
Inheritance diagram for cmd_mode:


Public Member Functions | |
| cmd_mode (InspIRCd *Instance) | |
| Constructor for mode. | |
| CmdResult | Handle (const char **parameters, int pcnt, userrec *user) |
| Handle command. | |
These command handlers can be reloaded by the core, and handle basic RFC1459 commands. Commands within modules work the same way, however, they can be fully unloaded, where these may not.
Definition at line 26 of file cmd_mode.h.
|
|
Constructor for mode.
Definition at line 31 of file cmd_mode.h. References command_t::syntax.
|
|
||||||||||||||||
|
Handle command.
Implements command_t. Definition at line 26 of file cmd_mode.cpp. References CMD_SUCCESS, InspIRCd::Modes, ModeParser::Process(), and command_t::ServerInstance. 00027 { 00028 ServerInstance->Modes->Process(parameters, pcnt, user, false); 00029 return CMD_SUCCESS; 00030 }
|