X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fmessages.h;h=8aba41b1481d3f4d0385f52dc11565451dff2cff;hp=8ad608bcb4544fe0953ecab239a924df207c42e6;hb=6cb785e0a7b0d577f1355d20a76289f55eb36592;hpb=b02f6b423c5bfbed5ffb25ec087de562619052f4 diff --git a/src/ngircd/messages.h b/src/ngircd/messages.h index 8ad608bc..8aba41b1 100644 --- a/src/ngircd/messages.h +++ b/src/ngircd/messages.h @@ -9,11 +9,17 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: messages.h,v 1.3 2001/12/25 19:20:11 alex Exp $ + * $Id: messages.h,v 1.5 2001/12/26 03:51:13 alex Exp $ * * irc.h: IRC-Befehle (Header) * * $Log: messages.h,v $ + * Revision 1.5 2001/12/26 03:51:13 alex + * - in ERR_NOTREGISTERED_MSG fehlte ein "%s" - jetzt steht auch hier der Nick. + * + * Revision 1.4 2001/12/26 03:22:40 alex + * - Format der Meldungen ueberarbeitet: fast immer ist nun der Nick enthalten. + * * Revision 1.3 2001/12/25 19:20:11 alex * - neue Message: ERR_NICKNAMEINUSE[_MSG]. * @@ -54,23 +60,26 @@ #define RPL_ENDOFMOTD_MSG RPL_ENDOFMOTD" %s :End of MOTD command." +#define ERR_NOORIGIN "409" +#define ERR_NOORIGIN_MSG ERR_NOORIGIN" %s :No origin specified" + #define ERR_UNKNOWNCOMMAND "421" -#define ERR_UNKNOWNCOMMAND_MSG ERR_UNKNOWNCOMMAND" %s :Unknown command" +#define ERR_UNKNOWNCOMMAND_MSG ERR_UNKNOWNCOMMAND" %s %s :Unknown command" #define ERR_ERRONEUSNICKNAME "432" -#define ERR_ERRONEUSNICKNAME_MSG ERR_ERRONEUSNICKNAME" %s :Erroneous nickname" +#define ERR_ERRONEUSNICKNAME_MSG ERR_ERRONEUSNICKNAME" %s %s :Erroneous nickname" #define ERR_NICKNAMEINUSE "433" -#define ERR_NICKNAMEINUSE_MSG ERR_NICKNAMEINUSE" %s :Nickname already in use" +#define ERR_NICKNAMEINUSE_MSG ERR_NICKNAMEINUSE" %s %s :Nickname already in use" #define ERR_NEEDMOREPARAMS "461" -#define ERR_NEEDMOREPARAMS_MSG ERR_NEEDMOREPARAMS" :Syntax error" +#define ERR_NEEDMOREPARAMS_MSG ERR_NEEDMOREPARAMS" %s %s :Syntax error" #define ERR_ALREADYREGISTRED "462" -#define ERR_ALREADYREGISTRED_MSG ERR_ALREADYREGISTRED" :Connection already registered" +#define ERR_ALREADYREGISTRED_MSG ERR_ALREADYREGISTRED" %s :Connection already registered" #define ERR_NOTREGISTERED "451" -#define ERR_NOTREGISTERED_MSG ERR_NOTREGISTERED" :Connection not registered" +#define ERR_NOTREGISTERED_MSG ERR_NOTREGISTERED" %s :Connection not registered" #endif