X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fchannel.h;h=f44e19468014663ef0f50cfb22725f391aed60f8;hp=030f9109ceff0eb7bbfa42d435ead49740dc29da;hb=2a7dd06ebd9cc72d45a6a4becdbef5213d7b7800;hpb=9bc5d565bbbd1131aaa7608076598167036f261b diff --git a/src/ngircd/channel.h b/src/ngircd/channel.h index 030f9109..f44e1946 100644 --- a/src/ngircd/channel.h +++ b/src/ngircd/channel.h @@ -1,20 +1,21 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2008 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. - * - * Channel management (header) */ - #ifndef __channel_h__ #define __channel_h__ +/** + * @file + * Channel management (header) + */ #if defined(__channel_c__) | defined(S_SPLINT_S) @@ -133,6 +134,10 @@ GLOBAL void Channel_LogServer PARAMS((const char *msg)); GLOBAL bool Channel_CheckKey PARAMS((CHANNEL *Chan, CLIENT *Client, const char *Key)); +GLOBAL void Channel_CheckAdminRights PARAMS((CHANNEL *Chan, CLIENT *Client, + CLIENT *Origin, bool *OnChannel, + bool *AdminOk, bool *UseServerMode)); + #define Channel_IsLocal(c) (Channel_Name(c)[0] == '&') #define Channel_IsModeless(c) (Channel_Name(c)[0] == '+')