summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2013-07-30 22:08:04 +0200
committerAlexander Barton <alex@barton.de>2013-07-30 22:08:04 +0200
commit313881d0c1466e6b8f52b4456b66a2477ccba9cf (patch)
tree04cbc04c36eb9a7b576684dd6bfbab4fce77005f /src
parent3bd973037a1664387161a465f801b78ff0180fa1 (diff)
downloadngircd-313881d0c1466e6b8f52b4456b66a2477ccba9cf.tar.gz
ngircd-313881d0c1466e6b8f52b4456b66a2477ccba9cf.zip
Add penalty times in error paths of generic IRC helper macros
Add a 2 second penalty time when the number of parameters is invalid.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/irc-macros.h24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/ngircd/irc-macros.h b/src/ngircd/irc-macros.h
index f0c0f36e..abb93f01 100644
--- a/src/ngircd/irc-macros.h
+++ b/src/ngircd/irc-macros.h
@@ -24,9 +24,11 @@
  * return from the function.
  */
 #define _IRC_ARGC_EQ_OR_RETURN_(Client, Req, Count) \
-if (Req->argc != Count) \
+if (Req->argc != Count) { \
+	IRC_SetPenalty(Client, 2); \
 	return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, \
-				  Client_ID(Client), Req->command);
+				  Client_ID(Client), Req->command); \
+}
 
 /**
  * Make sure that number of passed parameters is less or equal than Max.
@@ -35,9 +37,11 @@ if (Req->argc != Count) \
  * return from the function.
  */
 #define _IRC_ARGC_LE_OR_RETURN_(Client, Req, Max) \
-if (Req->argc > Max) \
+if (Req->argc > Max) { \
+	IRC_SetPenalty(Client, 2); \
 	return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, \
-				  Client_ID(Client), Req->command);
+				  Client_ID(Client), Req->command); \
+}
 
 /**
  * Make sure that number of passed parameters is greater or equal than Min.
@@ -46,9 +50,11 @@ if (Req->argc > Max) \
  * return from the function.
  */
 #define _IRC_ARGC_GE_OR_RETURN_(Client, Req, Min) \
-if (Req->argc < Min) \
+if (Req->argc < Min) { \
+	IRC_SetPenalty(Client, 2); \
 	return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, \
-				  Client_ID(Client), Req->command);
+				  Client_ID(Client), Req->command); \
+}
 
 /**
  * Make sure that number of passed parameters is in between Min and Max.
@@ -57,9 +63,11 @@ if (Req->argc < Min) \
  * parameters, send an error to the client and return from the function.
  */
 #define _IRC_ARGC_BETWEEN_OR_RETURN_(Client, Req, Min, Max) \
-if (Req->argc < Min || Req->argc > Max) \
+if (Req->argc < Min || Req->argc > Max) { \
+	IRC_SetPenalty(Client, 2); \
 	return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, \
-				  Client_ID(Client), Req->command);
+				  Client_ID(Client), Req->command); \
+}
 
 /**
  * Get sender of an IRC command.