X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fparse.h;h=a3f764ece38587c22fca60ed344b74e6e1e1ca55;hb=6dc80bd195ad0760bb560177d6f91c86b7698758;hp=72f0f4ae729884f28271e4c65f9b8d0a7587a2eb;hpb=6e07fb410c2c2d07ada2a6c159e73c50eeef0488;p=ngircd-alex.git diff --git a/src/ngircd/parse.h b/src/ngircd/parse.h index 72f0f4ae..a3f764ec 100644 --- a/src/ngircd/parse.h +++ b/src/ngircd/parse.h @@ -1,45 +1,46 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001 by Alexander Barton (alex@barton.de) + * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * - * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen - * der GNU General Public License (GPL), wie von der Free Software Foundation - * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 - * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. - * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste - * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * 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.1 2001/12/21 23:53:16 alex Exp $ - * - * parse.h: Parsen der Client-Anfragen (Header) - * - * $Log: parse.h,v $ - * Revision 1.1 2001/12/21 23:53:16 alex - * - Modul zum Parsen von Client-Requests begonnen. + * $Id: parse.h,v 1.13 2008/01/13 16:12:49 fw Exp $ * + * IRC command parser and validator (header) */ #ifndef __parse_h__ #define __parse_h__ -#include "conn.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 VOID Parse_Init( VOID ); -GLOBAL VOID Parse_Exit( VOID ); +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 */ +} COMMAND; + -GLOBAL BOOLEAN Parse_Request( CONN_ID Idx, CHAR *Request ); +GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request )); +GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void )); #endif