X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fparse.h;h=859c7ce575692ee4b69ff032face09f96269ba3e;hp=6c252b153caf2d7408bbfab9656c0c771eb9ddcd;hb=3de972e0bdbb5da7b13db5628e5373e3ec57cf51;hpb=c7f075236b5930f191e784a69c782e7a9d24bc58 diff --git a/src/ngircd/parse.h b/src/ngircd/parse.h index 6c252b15..859c7ce5 100644 --- a/src/ngircd/parse.h +++ b/src/ngircd/parse.h @@ -7,30 +7,45 @@ * 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. - * - * $Id: parse.h,v 1.8 2002/12/12 12:23:43 alex Exp $ - * - * IRC command parser and validator (header) */ - #ifndef __parse_h__ #define __parse_h__ +/** + * @file + * IRC command parser and validator (header) + */ + +#include "portab.h" -typedef struct _REQUEST /* vgl. RFC 2812, 2.3 */ +/** A single IRC request ("command"). See RFC 2812 section 2.3 for details. */ +typedef struct _REQUEST { - 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 command */ + char *argv[15]; /**< Parameters, at most 15 (0..14) */ + int argc; /**< Number of given paramaters */ } REQUEST; +/** IRC command handling structure */ +typedef struct _COMMAND +{ + const char *name; /**< Command name */ + bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request )); + /**< Function to handle this command */ + CLIENT_TYPE type; /**< Valid client types (bit mask) */ + int min_argc; /**< Min parameters */ + int max_argc; /**< Max parameters */ + int penalty; /**< Penalty for this command */ + long lcount, rcount; /**< Number of local and remote calls */ + long bytes; /**< Number of bytes created */ +} COMMAND; -GLOBAL BOOLEAN Parse_Request PARAMS((CONN_ID Idx, CHAR *Request )); +GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request )); +GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void )); #endif - /* -eof- */