about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-12-31 16:11:06 +0000
committerAlexander Barton <alex@barton.de>2002-12-31 16:11:06 +0000
commit3e026ded6f78e92a09d0e4f1f183ca9896bb0d69 (patch)
treedcf47a3781f818adaf62c570bbc7b52eba53a498
parent4e485443d36d753fb1f931430a8e96e4e4c94287 (diff)
downloadngircd-3e026ded6f78e92a09d0e4f1f183ca9896bb0d69.tar.gz
ngircd-3e026ded6f78e92a09d0e4f1f183ca9896bb0d69.zip
- New commands CONNECT and DISCONNECT.
-rw-r--r--src/ngircd/irc-oper.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngircd/irc-oper.h b/src/ngircd/irc-oper.h
index acff64e9..8478c7bd 100644
--- a/src/ngircd/irc-oper.h
+++ b/src/ngircd/irc-oper.h
@@ -8,7 +8,7 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: irc-oper.h,v 1.9 2002/12/12 12:23:43 alex Exp $
+ * $Id: irc-oper.h,v 1.10 2002/12/31 16:11:06 alex Exp $
  *
  * IRC operator commands (header)
  */
@@ -23,6 +23,7 @@ GLOBAL BOOLEAN IRC_DIE PARAMS((CLIENT *Client, REQUEST *Req ));
 GLOBAL BOOLEAN IRC_REHASH PARAMS((CLIENT *Client, REQUEST *Req ));
 GLOBAL BOOLEAN IRC_RESTART PARAMS((CLIENT *Client, REQUEST *Req ));
 GLOBAL BOOLEAN IRC_CONNECT PARAMS((CLIENT *Client, REQUEST *Req ));
+GLOBAL BOOLEAN IRC_DISCONNECT PARAMS((CLIENT *Client, REQUEST *Req ));
 
 
 #endif