]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/client.h
Conn_UpdateIdle(): Code cleanup
[ngircd-alex.git] / src / ngircd / client.h
index 98a0d1a4e327011fa571154f9657c2143657a9f2..7bb230b49d23edcb0d02fd3ea29ed48dbbd368d1 100644 (file)
@@ -7,13 +7,16 @@
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
- *
- * Client management (header)
  */
 
 #ifndef __client_h__
 #define __client_h__
 
+/**
+ * @file
+ * Client management (header)
+ */
+
 #define CLIENT_UNKNOWN 1               /* connection of unknown type */
 #define CLIENT_GOTPASS 2               /* client did send PASS */
 #define CLIENT_GOTNICK 4               /* client did send NICK */
@@ -23,6 +26,9 @@
 #define CLIENT_SERVICE 64              /* client is a service */
 #define CLIENT_UNKNOWNSERVER 128       /* unregistered server connection */
 #define CLIENT_GOTPASS_2813 256                /* client did send PASS, RFC 2813 style */
+#ifndef STRICT_RFC
+# define CLIENT_WAITAUTHPING 512       /* waiting for AUTH PONG from client */
+#endif
 
 #define CLIENT_TYPE int
 
@@ -157,6 +163,13 @@ GLOBAL void Client_RegisterWhowas PARAMS(( CLIENT *Client ));
 
 GLOBAL const char *Client_TypeText PARAMS((CLIENT *Client));
 
+GLOBAL void Client_Reject PARAMS((CLIENT *Client, const char *Reason,
+                                 bool InformClient));
+
+#ifdef DEBUG
+GLOBAL void Client_DebugDump PARAMS((void));
+#endif
+
 #endif
 
 /* -eof- */