]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/parse.h
Introduce option to configure the maximum nick name lenth in ngircd.conf
[ngircd-alex.git] / src / ngircd / parse.h
index b095666601ba7018284055dc8698232de88c9d4c..e7a00879b5b826f7bef0dd4d604314fc0114ca09 100644 (file)
@@ -8,7 +8,7 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: parse.h,v 1.11 2005/03/19 18:43:49 fw Exp $
+ * $Id: parse.h,v 1.12 2007/11/21 12:16:36 alex Exp $
  *
  * IRC command parser and validator (header)
  */
@@ -33,11 +33,18 @@ typedef struct _COMMAND
        char *name;                     /* command name */
        bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
        CLIENT_TYPE type;               /* valid client types (bit mask) */
-       long lcount, rcount;    /* number of local and remote calls */
-       long bytes;             /* number of bytes created */
+       long lcount, rcount;            /* number of local and remote calls */
+       long bytes;                     /* number of bytes created */
 } COMMAND;
 
 
+typedef struct _NUMERIC
+{
+       int numeric;                    /* numeric */
+       bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
+} NUMERIC;
+
+
 GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request ));
 
 GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void ));