X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fparse.h;h=205dbb8dfb83d0a01e67cb194b4a0ea5d0a1924d;hb=c135d0dded909e2e5780697c4066ad44a3f488c8;hp=6c252b153caf2d7408bbfab9656c0c771eb9ddcd;hpb=c7f075236b5930f191e784a69c782e7a9d24bc58;p=ngircd-alex.git diff --git a/src/ngircd/parse.h b/src/ngircd/parse.h index 6c252b15..205dbb8d 100644 --- a/src/ngircd/parse.h +++ b/src/ngircd/parse.h @@ -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.8 2002/12/12 12:23:43 alex Exp $ + * $Id: parse.h,v 1.13 2008/01/13 16:12:49 fw Exp $ * * IRC command parser and validator (header) */ @@ -17,18 +17,30 @@ #ifndef __parse_h__ #define __parse_h__ +#include "portab.h" typedef struct _REQUEST /* vgl. RFC 2812, 2.3 */ { - CHAR *prefix; /* Prefix */ - CHAR *command; /* IRC-Befehl */ - CHAR *argv[15]; /* Parameter (max. 15: 0..14) */ - INT argc; /* Anzahl vorhandener Parameter */ + char *prefix; /* Prefix */ + char *command; /* IRC-Befehl */ + char *argv[15]; /* Parameter (max. 15: 0..14) */ + int argc; /* Anzahl vorhandener Parameter */ } REQUEST; -GLOBAL BOOLEAN Parse_Request PARAMS((CONN_ID Idx, CHAR *Request )); +typedef struct _COMMAND +{ + const 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 */ +} COMMAND; + + +GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request )); +GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void )); #endif