X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Flists.h;h=f709f3fa65a4c149329f095d196ba9b431cdddef;hp=d71698d28f925447d81a02820e5fcb5937e431ce;hb=1e4a00f94f32edf5c2240864b7e56f69636312f4;hpb=c7f075236b5930f191e784a69c782e7a9d24bc58 diff --git a/src/ngircd/lists.h b/src/ngircd/lists.h index d71698d2..f709f3fa 100644 --- a/src/ngircd/lists.h +++ b/src/ngircd/lists.h @@ -1,42 +1,54 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) + * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors. * * 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: lists.h,v 1.9 2002/12/12 12:23:43 alex Exp $ - * - * Management of IRC lists: ban, invite, ... (header) */ - #ifndef __lists_h__ #define __lists_h__ +/** + * @file + * Management of IRC lists (header) + */ -GLOBAL VOID Lists_Init PARAMS(( VOID )); -GLOBAL VOID Lists_Exit PARAMS(( VOID )); +#include "portab.h" +#include "client.h" -GLOBAL BOOLEAN Lists_CheckInvited PARAMS(( CLIENT *Client, CHANNEL *Chan )); -GLOBAL BOOLEAN Lists_AddInvited PARAMS(( CLIENT *From, CHAR *Mask, CHANNEL *Chan, BOOLEAN OnlyOnce )); -GLOBAL VOID Lists_DelInvited PARAMS(( CHAR *Mask, CHANNEL *Chan )); -GLOBAL BOOLEAN Lists_ShowInvites PARAMS(( CLIENT *Client, CHANNEL *Channel )); +struct list_elem; -GLOBAL BOOLEAN Lists_CheckBanned PARAMS(( CLIENT *Client, CHANNEL *Chan )); -GLOBAL BOOLEAN Lists_AddBanned PARAMS(( CLIENT *From, CHAR *Mask, CHANNEL *Chan )); -GLOBAL VOID Lists_DelBanned PARAMS(( CHAR *Mask, CHANNEL *Chan )); -GLOBAL BOOLEAN Lists_ShowBans PARAMS(( CLIENT *Client, CHANNEL *Channel )); +struct list_head { + struct list_elem *first; +}; -GLOBAL VOID Lists_DeleteChannel PARAMS(( CHANNEL *Chan )); +GLOBAL struct list_elem *Lists_GetFirst PARAMS((const struct list_head *)); +GLOBAL struct list_elem *Lists_GetNext PARAMS((const struct list_elem *)); -GLOBAL CHAR *Lists_MakeMask PARAMS(( CHAR *Pattern )); +GLOBAL bool Lists_Check PARAMS((struct list_head *head, CLIENT *client)); +GLOBAL struct list_elem *Lists_CheckDupeMask PARAMS((const struct list_head *head, + const char *mask)); +GLOBAL bool Lists_Add PARAMS((struct list_head *h, const char *Mask, + time_t ValidUntil, const char *Reason)); +GLOBAL void Lists_Del PARAMS((struct list_head *head, const char *Mask)); -#endif +GLOBAL bool Lists_AlreadyRegistered PARAMS((const struct list_head *head, + const char *Mask)); +GLOBAL void Lists_Free PARAMS((struct list_head *head)); + +GLOBAL const char *Lists_MakeMask PARAMS((const char *Pattern)); +GLOBAL const char *Lists_GetMask PARAMS((const struct list_elem *e)); +GLOBAL const char *Lists_GetReason PARAMS((const struct list_elem *e)); +GLOBAL time_t Lists_GetValidity PARAMS((const struct list_elem *e)); + +GLOBAL void Lists_Expire PARAMS((struct list_head *h, const char *ListName)); + +#endif /* -eof- */