diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/commands/cmd_who.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/include/commands/cmd_who.h b/include/commands/cmd_who.h index 299b70cdd..c4c381b55 100644 --- a/include/commands/cmd_who.h +++ b/include/commands/cmd_who.h @@ -3,13 +3,13 @@ * +------------------------------------+ * * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * <brain@chatspike.net> - * <Craig@chatspike.net> + * E-mail: + * <brain@chatspike.net> + * <Craig@chatspike.net> * * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see - * the file COPYING for details. + * the file COPYING for details. * * --------------------------------------------------- */ @@ -27,9 +27,15 @@ class cmd_who : public command_t { bool CanView(chanrec* chan, userrec* user); + bool opt_viewopersonly; + bool opt_showrealhost; + bool opt_unlimit; + bool opt_realname; + bool opt_mode; public: - cmd_who (InspIRCd* Instance) : command_t(Instance,"WHO",0,1) { syntax = "<server>|<nickname>|<channel>|<realname>|<host>|0 [ohur]"; } - CmdResult Handle(const char** parameters, int pcnt, userrec *user); + cmd_who (InspIRCd* Instance) : command_t(Instance,"WHO",0,1) { syntax = "<server>|<nickname>|<channel>|<realname>|<host>|0 [ohur]"; } + void SendWhoLine(userrec* user, const std::string &initial, chanrec* ch, userrec* u, std::vector<std::string> &whoresults); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif |