]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/messages.h
- der Server meldet nun eine ordentliche "Start-Zeit".
[ngircd-alex.git] / src / ngircd / messages.h
index 13b79cd604bb2647c8b888362f6b3e3422b14889..8faae465b0df8a486db7ad3e334f7854a98be693 100644 (file)
@@ -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.8 2001/12/27 19:17:26 alex Exp $
+ * $Id: messages.h,v 1.10 2001/12/30 11:42:00 alex Exp $
  *
  * irc.h: IRC-Befehle (Header)
  *
  * $Log: messages.h,v $
+ * Revision 1.10  2001/12/30 11:42:00  alex
+ * - der Server meldet nun eine ordentliche "Start-Zeit".
+ *
+ * Revision 1.9  2001/12/29 03:06:56  alex
+ * - Texte ergaenzt, einige Bugs behoben (Leerzeichen falsch gesetzt, z.B.)
+ *
  * Revision 1.8  2001/12/27 19:17:26  alex
  * - neue Befehle PRIVMSG, NOTICE, PING.
  *
@@ -54,7 +60,7 @@
 #define RPL_YOURHOST_MSG               RPL_YOURHOST" %s :Your host is %s, running ngircd "VERSION"-"P_OSNAME"/"P_ARCHNAME
 
 #define RPL_CREATED                    "003"
-#define RPL_CREATED_MSG                        RPL_CREATED" %s :This server was created once upon a time ... ;-)"
+#define RPL_CREATED_MSG                        RPL_CREATED" %s :This server was started %s"
 
 #define RPL_MYINFO                     "004"
 #define RPL_MYINFO_MSG                 RPL_MYINFO" %s %s ngircd-"VERSION" + +"
@@ -68,6 +74,9 @@
 #define RPL_ENDOFMOTD                  "376"
 #define RPL_ENDOFMOTD_MSG              RPL_ENDOFMOTD" %s :End of MOTD command"
 
+#define RPL_UMODEIS                    "211"
+#define RPL_UMODEIS_MSG                        RPL_UMODEIS" %s +%s"
+
 
 #define ERR_NOSUCHNICK                 "401"
 #define ERR_NOSUCHNICK_MSG             ERR_NOSUCHNICK" %s %s :No such nick or channel name"
 #define ERR_NOORIGIN_MSG               ERR_NOORIGIN" %s :No origin specified"
 
 #define ERR_NORECIPIENT                        "411"
-#define ERR_NORECIPIENT_MSG            ERR_NORECIPIENT" %sNo receipient given (%s)"
+#define ERR_NORECIPIENT_MSG            ERR_NORECIPIENT" %s :No receipient given (%s)"
 
 #define ERR_NOTEXTTOSEND               "412"
-#define ERR_NOTEXTTOSEND_MSG           ERR_NOTEXTTOSEND" %sNo text to send"
+#define ERR_NOTEXTTOSEND_MSG           ERR_NOTEXTTOSEND" %s :No text to send"
 
 #define ERR_UNKNOWNCOMMAND             "421"
 #define ERR_UNKNOWNCOMMAND_MSG         ERR_UNKNOWNCOMMAND" %s %s :Unknown command"
 #define ERR_NOTREGISTERED              "451"
 #define ERR_NOTREGISTERED_MSG          ERR_NOTREGISTERED" %s :Connection not registered"
 
+#define ERR_RESTRICTED                 "484"
+#define ERR_RESTRICTED_MSG             ERR_RESTRICTED" %s :Your connection is restricted"
+
+#define ERR_UMODEUNKNOWNFLAG           "501"
+#define ERR_UMODEUNKNOWNFLAG_MSG       ERR_UMODEUNKNOWNFLAG" %s :Unknown mode flag"
+
+#define ERR_USERSDONTMATCH             "502"
+#define ERR_USERSDONTMATCH_MSG         ERR_USERSDONTMATCH" %s :Can't set/get mode for other users"
+
 
 #endif