diff options
| author | Alexander Barton <alex@barton.de> | 2002-01-05 23:23:44 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-01-05 23:23:44 +0000 |
| commit | 0b15709e4c4602d76506aa96022eb2f801c24a55 (patch) | |
| tree | 1b79d41734d577baa848a51603fbe8f219ecfba3 /src | |
| parent | 1c8c92af424db1760111d96e5f4f9d18d3d39d53 (diff) | |
| download | ngircd-0b15709e4c4602d76506aa96022eb2f801c24a55.tar.gz ngircd-0b15709e4c4602d76506aa96022eb2f801c24a55.zip | |
- neue Nachricht ERR_NOSUCHSERVER_MSG definiert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/messages.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ngircd/messages.h b/src/ngircd/messages.h index f01f6398..8a47207c 100644 --- a/src/ngircd/messages.h +++ b/src/ngircd/messages.h @@ -9,11 +9,14 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: messages.h,v 1.16 2002/01/03 02:24:21 alex Exp $ + * $Id: messages.h,v 1.17 2002/01/05 23:23:44 alex Exp $ * * irc.h: IRC-Befehle (Header) * * $Log: messages.h,v $ + * Revision 1.17 2002/01/05 23:23:44 alex + * - neue Nachricht ERR_NOSUCHSERVER_MSG definiert. + * * Revision 1.16 2002/01/03 02:24:21 alex * - neue Message ERR_NOTREGISTEREDSERVER_MSG. * @@ -135,6 +138,9 @@ #define ERR_NOSUCHNICK "401" #define ERR_NOSUCHNICK_MSG ERR_NOSUCHNICK" %s %s :No such nick or channel name" +#define ERR_NOSUCHSERVER "402" +#define ERR_NOSUCHSERVER_MSG ERR_NOSUCHSERVER" %s %s :No such server" + #define ERR_NOORIGIN "409" #define ERR_NOORIGIN_MSG ERR_NOORIGIN" %s :No origin specified" |