about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-01-03 02:26:07 +0000
committerAlexander Barton <alex@barton.de>2002-01-03 02:26:07 +0000
commitd1574f872f5ece96d3e948c1b64df2f8e49a78b3 (patch)
treefc834a0dfd7fdf91f86fcf760ec5b2b2b3e13905
parent54e487d424c65ead3f94486a926dcd9b8bfd82e9 (diff)
downloadngircd-d1574f872f5ece96d3e948c1b64df2f8e49a78b3.tar.gz
ngircd-d1574f872f5ece96d3e948c1b64df2f8e49a78b3.zip
- neue Befehle SERVER und NJOIN begonnen.
-rw-r--r--src/ngircd/irc.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ngircd/irc.h b/src/ngircd/irc.h
index fbb7f97e..0b20ca3f 100644
--- a/src/ngircd/irc.h
+++ b/src/ngircd/irc.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: irc.h,v 1.13 2002/01/02 02:51:39 alex Exp $
+ * $Id: irc.h,v 1.14 2002/01/03 02:26:07 alex Exp $
  *
  * irc.h: IRC-Befehle (Header)
  *
  * $Log: irc.h,v $
+ * Revision 1.14  2002/01/03 02:26:07  alex
+ * - neue Befehle SERVER und NJOIN begonnen.
+ *
  * Revision 1.13  2002/01/02 02:51:39  alex
  * - Copyright-Texte angepasst.
  * - neuer Befehl "ERROR".
@@ -74,6 +77,8 @@ GLOBAL BOOLEAN IRC_WriteStrRelated( CLIENT *Client, CHAR *Format, ... );
 GLOBAL BOOLEAN IRC_PASS( CLIENT *Client, REQUEST *Req );
 GLOBAL BOOLEAN IRC_NICK( CLIENT *Client, REQUEST *Req );
 GLOBAL BOOLEAN IRC_USER( CLIENT *Client, REQUEST *Req );
+GLOBAL BOOLEAN IRC_SERVER( CLIENT *Client, REQUEST *Req );
+GLOBAL BOOLEAN IRC_NJOIN( CLIENT *Client, REQUEST *Req );
 GLOBAL BOOLEAN IRC_PING( CLIENT *Client, REQUEST *Req );
 GLOBAL BOOLEAN IRC_PONG( CLIENT *Client, REQUEST *Req );
 GLOBAL BOOLEAN IRC_QUIT( CLIENT *Client, REQUEST *Req );