diff options
| author | Alexander Barton <alex@barton.de> | 2002-12-31 16:11:24 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-12-31 16:11:24 +0000 |
| commit | a7956f334e5db679d4def573360ac9a03afd6836 (patch) | |
| tree | 28d0b0b693044235108973fc412c5982cd280b72 /src | |
| parent | 3e026ded6f78e92a09d0e4f1f183ca9896bb0d69 (diff) | |
| download | ngircd-a7956f334e5db679d4def573360ac9a03afd6836.tar.gz ngircd-a7956f334e5db679d4def573360ac9a03afd6836.zip | |
- New command DISCONNECT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngircd/parse.c b/src/ngircd/parse.c index fbc6ac6b..0c58e10d 100644 --- a/src/ngircd/parse.c +++ b/src/ngircd/parse.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: parse.c,v 1.55 2002/12/30 17:15:42 alex Exp $"; +static char UNUSED id[] = "$Id: parse.c,v 1.56 2002/12/31 16:11:24 alex Exp $"; #include "imp.h" #include <assert.h> @@ -54,6 +54,7 @@ COMMAND My_Commands[] = { "AWAY", IRC_AWAY, CLIENT_USER, 0, 0, 0 }, { "CONNECT", IRC_CONNECT, CLIENT_USER, 0, 0, 0 }, { "DIE", IRC_DIE, CLIENT_USER, 0, 0, 0 }, + { "DISCONNECT", IRC_DISCONNECT, CLIENT_USER, 0, 0, 0 }, { "ERROR", IRC_ERROR, 0xFFFF, 0, 0, 0 }, { "INVITE", IRC_INVITE, CLIENT_USER|CLIENT_SERVER, 0, 0, 0 }, { "ISON", IRC_ISON, CLIENT_USER, 0, 0, 0 }, |