diff options
| author | Alexander Barton <alex@barton.de> | 2013-02-24 16:14:13 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2013-02-24 16:14:13 +0100 |
| commit | 883a8fa6f185033102748be6dde1b386ddef54ac (patch) | |
| tree | c2555b617c78fb7870e39b907bb8afb49c8acf71 | |
| parent | a7b04ce6cff3613a45864a127dde082a1a4c6aec (diff) | |
| download | ngircd-883a8fa6f185033102748be6dde1b386ddef54ac.tar.gz ngircd-883a8fa6f185033102748be6dde1b386ddef54ac.zip | |
Add new _IRC_ARGC_BETWEEN_OR_RETURN_ macro to irc-macros.h
| -rw-r--r-- | src/ngircd/irc-macros.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ngircd/irc-macros.h b/src/ngircd/irc-macros.h index bd63ec49..87a60885 100644 --- a/src/ngircd/irc-macros.h +++ b/src/ngircd/irc-macros.h @@ -40,6 +40,17 @@ if (Req->argc < Min) \ Client_ID(Client), Req->command); /** + * Make sure that number of passed parameters is in between Min and Max. + * + * If there aren't at least Min parameters or if there are more than Max + * 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) \ + return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, \ + Client_ID(Client), Req->command); + +/** * Get sender of an IRC command. * * The sender is either stored in the prefix if the command has been |