diff options
25 files changed, 50 insertions, 3 deletions
diff --git a/include/commands/cmd_part.h b/include/commands/cmd_part.h index 6532762e0..5f74b9855 100644 --- a/include/commands/cmd_part.h +++ b/include/commands/cmd_part.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /PART + */ class cmd_part : public command_t { public: diff --git a/include/commands/cmd_pass.h b/include/commands/cmd_pass.h index 24c0e6b82..410c8bb40 100644 --- a/include/commands/cmd_pass.h +++ b/include/commands/cmd_pass.h @@ -25,6 +25,8 @@ #include "users.h" #include "channels.h" +/** Handle /PASS + */ class cmd_pass : public command_t { public: diff --git a/include/commands/cmd_ping.h b/include/commands/cmd_ping.h index c2da1d5ce..eaf0fe4dc 100644 --- a/include/commands/cmd_ping.h +++ b/include/commands/cmd_ping.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /PING + */ class cmd_ping : public command_t { public: diff --git a/include/commands/cmd_pong.h b/include/commands/cmd_pong.h index db2b76f25..4eecbfa2a 100644 --- a/include/commands/cmd_pong.h +++ b/include/commands/cmd_pong.h @@ -23,6 +23,8 @@ #include "users.h" #include "channels.h" +/** Handle /PONG + */ class cmd_pong : public command_t { public: diff --git a/include/commands/cmd_privmsg.h b/include/commands/cmd_privmsg.h index 3f224c11e..7e58f0c6a 100644 --- a/include/commands/cmd_privmsg.h +++ b/include/commands/cmd_privmsg.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /PRIVMSG + */ class cmd_privmsg : public command_t { public: diff --git a/include/commands/cmd_qline.h b/include/commands/cmd_qline.h index 04fd9ce92..423b48b9b 100644 --- a/include/commands/cmd_qline.h +++ b/include/commands/cmd_qline.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /QLINE + */ class cmd_qline : public command_t { public: diff --git a/include/commands/cmd_quit.h b/include/commands/cmd_quit.h index b0577972a..04d183581 100644 --- a/include/commands/cmd_quit.h +++ b/include/commands/cmd_quit.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /QUIT + */ class cmd_quit : public command_t { public: diff --git a/include/commands/cmd_rehash.h b/include/commands/cmd_rehash.h index 78abf4648..8404f2df3 100644 --- a/include/commands/cmd_rehash.h +++ b/include/commands/cmd_rehash.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /REHASH + */ class cmd_rehash : public command_t { public: diff --git a/include/commands/cmd_restart.h b/include/commands/cmd_restart.h index 9ced78607..627e75c99 100644 --- a/include/commands/cmd_restart.h +++ b/include/commands/cmd_restart.h @@ -19,15 +19,14 @@ // include the common header files -#include <typeinfo> -#include <iostream> #include <string> #include <deque> -#include <sstream> #include <vector> #include "users.h" #include "channels.h" +/** Handle /RESTART + */ class cmd_restart : public command_t { public: diff --git a/include/commands/cmd_rules.h b/include/commands/cmd_rules.h index ed7e56ca4..b775edd97 100644 --- a/include/commands/cmd_rules.h +++ b/include/commands/cmd_rules.h @@ -25,6 +25,8 @@ #include "users.h" #include "channels.h" +/** Handle /RULES + */ class cmd_rules : public command_t { public: diff --git a/include/commands/cmd_server.h b/include/commands/cmd_server.h index 0b0f5e3d1..df302731d 100644 --- a/include/commands/cmd_server.h +++ b/include/commands/cmd_server.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /SERVER + */ class cmd_server : public command_t { public: diff --git a/include/commands/cmd_squit.h b/include/commands/cmd_squit.h index 3aaeea339..1b34ce366 100644 --- a/include/commands/cmd_squit.h +++ b/include/commands/cmd_squit.h @@ -25,6 +25,8 @@ #include "users.h" #include "channels.h" +/** Handle /SQUIT + */ class cmd_squit : public command_t { public: diff --git a/include/commands/cmd_stats.h b/include/commands/cmd_stats.h index 6beca59aa..00fada769 100644 --- a/include/commands/cmd_stats.h +++ b/include/commands/cmd_stats.h @@ -25,6 +25,8 @@ void DoStats(InspIRCd* Instance, char statschar, userrec* user, string_list &results); +/** Handle /STATS + */ class cmd_stats : public command_t { public: diff --git a/include/commands/cmd_summon.h b/include/commands/cmd_summon.h index db25ab7d5..c38747315 100644 --- a/include/commands/cmd_summon.h +++ b/include/commands/cmd_summon.h @@ -25,6 +25,8 @@ #include "users.h" #include "channels.h" +/** Handle /SUMMON stub + */ class cmd_summon : public command_t { public: diff --git a/include/commands/cmd_time.h b/include/commands/cmd_time.h index 847cc343b..32495c3e3 100644 --- a/include/commands/cmd_time.h +++ b/include/commands/cmd_time.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /TIME + */ class cmd_time : public command_t { public: diff --git a/include/commands/cmd_topic.h b/include/commands/cmd_topic.h index 052759e12..8d5468a41 100644 --- a/include/commands/cmd_topic.h +++ b/include/commands/cmd_topic.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /TOPIC + */ class cmd_topic : public command_t { public: diff --git a/include/commands/cmd_trace.h b/include/commands/cmd_trace.h index 8276a1e92..a4d33b104 100644 --- a/include/commands/cmd_trace.h +++ b/include/commands/cmd_trace.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /TRACE + */ class cmd_trace : public command_t { public: diff --git a/include/commands/cmd_userhost.h b/include/commands/cmd_userhost.h index d15c6b623..e86fa1b3c 100644 --- a/include/commands/cmd_userhost.h +++ b/include/commands/cmd_userhost.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /USERHOST + */ class cmd_userhost : public command_t { public: diff --git a/include/commands/cmd_users.h b/include/commands/cmd_users.h index 479bb1a7b..204091333 100644 --- a/include/commands/cmd_users.h +++ b/include/commands/cmd_users.h @@ -25,6 +25,8 @@ #include "users.h" #include "channels.h" +/** Handle /USERS stub + */ class cmd_users : public command_t { public: diff --git a/include/commands/cmd_version.h b/include/commands/cmd_version.h index accbd7452..115d87901 100644 --- a/include/commands/cmd_version.h +++ b/include/commands/cmd_version.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /VERSION + */ class cmd_version : public command_t { public: diff --git a/include/commands/cmd_wallops.h b/include/commands/cmd_wallops.h index da8b95fe4..7c84a1434 100644 --- a/include/commands/cmd_wallops.h +++ b/include/commands/cmd_wallops.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /WALLOPS + */ class cmd_wallops : public command_t { public: diff --git a/include/commands/cmd_who.h b/include/commands/cmd_who.h index a52836cbf..8b5bbe89e 100644 --- a/include/commands/cmd_who.h +++ b/include/commands/cmd_who.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /WHO + */ class cmd_who : public command_t { public: diff --git a/include/commands/cmd_whois.h b/include/commands/cmd_whois.h index 2dd710b5b..90b38cee1 100644 --- a/include/commands/cmd_whois.h +++ b/include/commands/cmd_whois.h @@ -25,6 +25,8 @@ const char* Spacify(char* n); void do_whois(InspIRCd* Instance, userrec* user, userrec* dest,unsigned long signon, unsigned long idle, const char* nick); +/** Handle /WHOIS + */ class cmd_whois : public command_t { public: diff --git a/include/commands/cmd_whowas.h b/include/commands/cmd_whowas.h index 12e59863d..3dc69bfdc 100644 --- a/include/commands/cmd_whowas.h +++ b/include/commands/cmd_whowas.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /WHOWAS + */ class cmd_whowas : public command_t { public: diff --git a/include/commands/cmd_zline.h b/include/commands/cmd_zline.h index 8dd2c2988..faebd1ab6 100644 --- a/include/commands/cmd_zline.h +++ b/include/commands/cmd_zline.h @@ -22,6 +22,8 @@ #include "users.h" #include "channels.h" +/** Handle /ZLINE + */ class cmd_zline : public command_t { public: |