summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/commands/cmd_admin.h2
-rw-r--r--include/commands/cmd_away.h2
-rw-r--r--include/commands/cmd_commands.h2
-rw-r--r--include/commands/cmd_connect.h2
-rw-r--r--include/commands/cmd_die.h2
-rw-r--r--include/commands/cmd_eline.h2
-rw-r--r--include/commands/cmd_gline.h2
-rw-r--r--include/commands/cmd_info.h2
-rw-r--r--include/commands/cmd_invite.h2
-rw-r--r--include/commands/cmd_ison.h2
-rw-r--r--include/commands/cmd_join.h2
-rw-r--r--include/commands/cmd_kick.h2
-rw-r--r--include/commands/cmd_kill.h2
-rw-r--r--include/commands/cmd_kline.h2
-rw-r--r--include/commands/cmd_links.h2
-rw-r--r--include/commands/cmd_list.h2
-rw-r--r--include/commands/cmd_loadmodule.h2
-rw-r--r--include/commands/cmd_lusers.h2
-rw-r--r--include/commands/cmd_map.h2
-rw-r--r--include/commands/cmd_mode.h2
-rw-r--r--include/commands/cmd_modules.h2
-rw-r--r--include/commands/cmd_motd.h2
-rw-r--r--include/commands/cmd_names.h2
-rw-r--r--include/commands/cmd_nick.h2
-rw-r--r--include/commands/cmd_notice.h2
-rw-r--r--include/commands/cmd_oper.h2
26 files changed, 52 insertions, 0 deletions
diff --git a/include/commands/cmd_admin.h b/include/commands/cmd_admin.h
index f2c08f14c..4b14ade07 100644
--- a/include/commands/cmd_admin.h
+++ b/include/commands/cmd_admin.h
@@ -21,6 +21,8 @@
#include "channels.h"
#include "ctables.h"
+/** Handle /ADMIN
+ */
class cmd_admin : public command_t
{
public:
diff --git a/include/commands/cmd_away.h b/include/commands/cmd_away.h
index 9fc56081a..469b07fb3 100644
--- a/include/commands/cmd_away.h
+++ b/include/commands/cmd_away.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /AWAY
+ */
class cmd_away : public command_t
{
public:
diff --git a/include/commands/cmd_commands.h b/include/commands/cmd_commands.h
index 70adc4f41..6c73f9a51 100644
--- a/include/commands/cmd_commands.h
+++ b/include/commands/cmd_commands.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /COMMANDS
+ */
class cmd_commands : public command_t
{
public:
diff --git a/include/commands/cmd_connect.h b/include/commands/cmd_connect.h
index 642c30030..ee9c73429 100644
--- a/include/commands/cmd_connect.h
+++ b/include/commands/cmd_connect.h
@@ -22,6 +22,8 @@
#include "ctables.h"
#include "modules.h"
+/** Handle /CONNECT
+ */
class cmd_connect : public command_t
{
public:
diff --git a/include/commands/cmd_die.h b/include/commands/cmd_die.h
index d16196eff..74244446f 100644
--- a/include/commands/cmd_die.h
+++ b/include/commands/cmd_die.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /DIE
+ */
class cmd_die : public command_t
{
public:
diff --git a/include/commands/cmd_eline.h b/include/commands/cmd_eline.h
index 8293d11bc..ba0553e53 100644
--- a/include/commands/cmd_eline.h
+++ b/include/commands/cmd_eline.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /ELINE
+ */
class cmd_eline : public command_t
{
public:
diff --git a/include/commands/cmd_gline.h b/include/commands/cmd_gline.h
index c0e745077..b39a0515c 100644
--- a/include/commands/cmd_gline.h
+++ b/include/commands/cmd_gline.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /GLINE
+ */
class cmd_gline : public command_t
{
public:
diff --git a/include/commands/cmd_info.h b/include/commands/cmd_info.h
index e2630c7e7..ccd8db019 100644
--- a/include/commands/cmd_info.h
+++ b/include/commands/cmd_info.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /INFO
+ */
class cmd_info : public command_t
{
public:
diff --git a/include/commands/cmd_invite.h b/include/commands/cmd_invite.h
index 1d4b0f6b2..301ebfecb 100644
--- a/include/commands/cmd_invite.h
+++ b/include/commands/cmd_invite.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /INVITE
+ */
class cmd_invite : public command_t
{
public:
diff --git a/include/commands/cmd_ison.h b/include/commands/cmd_ison.h
index cb94bc16e..45e665cde 100644
--- a/include/commands/cmd_ison.h
+++ b/include/commands/cmd_ison.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /ISON
+ */
class cmd_ison : public command_t
{
public:
diff --git a/include/commands/cmd_join.h b/include/commands/cmd_join.h
index fd3e948a9..58b5566f1 100644
--- a/include/commands/cmd_join.h
+++ b/include/commands/cmd_join.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /JOIN
+ */
class cmd_join : public command_t
{
public:
diff --git a/include/commands/cmd_kick.h b/include/commands/cmd_kick.h
index 56f2b5bbf..10cf9bc71 100644
--- a/include/commands/cmd_kick.h
+++ b/include/commands/cmd_kick.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /KICK
+ */
class cmd_kick : public command_t
{
public:
diff --git a/include/commands/cmd_kill.h b/include/commands/cmd_kill.h
index 8362d67e4..97f767cc9 100644
--- a/include/commands/cmd_kill.h
+++ b/include/commands/cmd_kill.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /KILL
+ */
class cmd_kill : public command_t
{
public:
diff --git a/include/commands/cmd_kline.h b/include/commands/cmd_kline.h
index 81650bbd9..50fc29815 100644
--- a/include/commands/cmd_kline.h
+++ b/include/commands/cmd_kline.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /KLINE
+ */
class cmd_kline : public command_t
{
public:
diff --git a/include/commands/cmd_links.h b/include/commands/cmd_links.h
index fb3b7aaf4..db02d1a09 100644
--- a/include/commands/cmd_links.h
+++ b/include/commands/cmd_links.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /LINKS
+ */
class cmd_links : public command_t
{
public:
diff --git a/include/commands/cmd_list.h b/include/commands/cmd_list.h
index 279849a69..d173a7f1e 100644
--- a/include/commands/cmd_list.h
+++ b/include/commands/cmd_list.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /LIST
+ */
class cmd_list : public command_t
{
public:
diff --git a/include/commands/cmd_loadmodule.h b/include/commands/cmd_loadmodule.h
index f74e8dd04..f26ffc113 100644
--- a/include/commands/cmd_loadmodule.h
+++ b/include/commands/cmd_loadmodule.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /LOADMODULE
+ */
class cmd_loadmodule : public command_t
{
public:
diff --git a/include/commands/cmd_lusers.h b/include/commands/cmd_lusers.h
index b833bad50..559d14bac 100644
--- a/include/commands/cmd_lusers.h
+++ b/include/commands/cmd_lusers.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /LUSERS
+ */
class cmd_lusers : public command_t
{
public:
diff --git a/include/commands/cmd_map.h b/include/commands/cmd_map.h
index aa097bbf2..3db33015d 100644
--- a/include/commands/cmd_map.h
+++ b/include/commands/cmd_map.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /MAP
+ */
class cmd_map : public command_t
{
public:
diff --git a/include/commands/cmd_mode.h b/include/commands/cmd_mode.h
index c9e82f572..dc062b2fc 100644
--- a/include/commands/cmd_mode.h
+++ b/include/commands/cmd_mode.h
@@ -21,6 +21,8 @@
#include "channels.h"
#include "ctables.h"
+/** Handle /MODE
+ */
class cmd_mode : public command_t
{
public:
diff --git a/include/commands/cmd_modules.h b/include/commands/cmd_modules.h
index 05e4c92e2..2e207c5f0 100644
--- a/include/commands/cmd_modules.h
+++ b/include/commands/cmd_modules.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /MODULES
+ */
class cmd_modules : public command_t
{
public:
diff --git a/include/commands/cmd_motd.h b/include/commands/cmd_motd.h
index 884422257..2b625a241 100644
--- a/include/commands/cmd_motd.h
+++ b/include/commands/cmd_motd.h
@@ -25,6 +25,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /MOTD
+ */
class cmd_motd : public command_t
{
public:
diff --git a/include/commands/cmd_names.h b/include/commands/cmd_names.h
index ad939e94b..3c106a5a9 100644
--- a/include/commands/cmd_names.h
+++ b/include/commands/cmd_names.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /NAMES
+ */
class cmd_names : public command_t
{
public:
diff --git a/include/commands/cmd_nick.h b/include/commands/cmd_nick.h
index 058aa1981..736faf22a 100644
--- a/include/commands/cmd_nick.h
+++ b/include/commands/cmd_nick.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /NICK
+ */
class cmd_nick : public command_t
{
public:
diff --git a/include/commands/cmd_notice.h b/include/commands/cmd_notice.h
index b50589dfe..fd1d42654 100644
--- a/include/commands/cmd_notice.h
+++ b/include/commands/cmd_notice.h
@@ -22,6 +22,8 @@
#include "users.h"
#include "channels.h"
+/** Handle /NOTICE
+ */
class cmd_notice : public command_t
{
public:
diff --git a/include/commands/cmd_oper.h b/include/commands/cmd_oper.h
index 07756f76c..438f5f8a7 100644
--- a/include/commands/cmd_oper.h
+++ b/include/commands/cmd_oper.h
@@ -24,6 +24,8 @@
bool OneOfMatches(const char* host, const char* ip, const char* hostlist);
+/** Handle /OPER
+ */
class cmd_oper : public command_t
{
public: