2001-12-22 00:53:16 +01:00
|
|
|
/*
|
|
|
|
* ngIRCd -- The Next Generation IRC Daemon
|
2002-01-02 03:43:50 +01:00
|
|
|
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
|
2001-12-22 00:53:16 +01:00
|
|
|
*
|
2002-12-12 13:23:43 +01:00
|
|
|
* 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.
|
2001-12-22 00:53:16 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __parse_h__
|
|
|
|
#define __parse_h__
|
|
|
|
|
2010-12-27 17:14:14 +01:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* IRC command parser and validator (header)
|
|
|
|
*/
|
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
#include "portab.h"
|
2001-12-22 00:53:16 +01:00
|
|
|
|
2010-12-27 17:34:26 +01:00
|
|
|
/** A single IRC request ("command"). See RFC 2812 section 2.3 for details. */
|
|
|
|
typedef struct _REQUEST
|
2001-12-22 00:53:16 +01:00
|
|
|
{
|
2010-12-27 17:34:26 +01:00
|
|
|
char *prefix; /**< Prefix */
|
|
|
|
char *command; /**< IRC command */
|
|
|
|
char *argv[15]; /**< Parameters, at most 15 (0..14) */
|
|
|
|
int argc; /**< Number of given paramaters */
|
2001-12-22 00:53:16 +01:00
|
|
|
} REQUEST;
|
|
|
|
|
2010-12-27 17:34:26 +01:00
|
|
|
/** IRC command handling structure */
|
2002-12-18 14:53:20 +01:00
|
|
|
typedef struct _COMMAND
|
|
|
|
{
|
2010-12-27 17:34:26 +01:00
|
|
|
const char *name; /**< Command name */
|
2005-03-19 19:43:48 +01:00
|
|
|
bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
|
2010-12-27 17:34:26 +01:00
|
|
|
/**< Function to handle this command */
|
|
|
|
CLIENT_TYPE type; /**< Valid client types (bit mask) */
|
|
|
|
long lcount, rcount; /**< Number of local and remote calls */
|
|
|
|
long bytes; /**< Number of bytes created */
|
2002-12-18 14:53:20 +01:00
|
|
|
} COMMAND;
|
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request ));
|
2001-12-22 00:53:16 +01:00
|
|
|
|
2005-03-19 19:43:48 +01:00
|
|
|
GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void ));
|
2002-12-18 14:53:20 +01:00
|
|
|
|
2001-12-22 00:53:16 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* -eof- */
|