1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 10:33:13 +02:00
Files
unrealircd/src/modules/chanmodes/regonly.c
T
2014-06-29 00:21:29 -07:00

98 lines
2.2 KiB
C

/*
* Registered users only UnrealIRCd Module (Channel Mode +R)
* (C) Copyright 2014 Travis McArthur (Heero) and the UnrealIRCd team
*
* 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 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
#include "struct.h"
#include "common.h"
#include "sys.h"
#include "numeric.h"
#include "msg.h"
#include "proto.h"
#include "channel.h"
#include <time.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <io.h>
#endif
#include <fcntl.h>
#include "h.h"
#ifdef _WIN32
#include "version.h"
#endif
ModuleHeader MOD_HEADER(regonly)
= {
"chanmodes/regonly",
"$Id$",
"Channel Mode +R",
"3.2-b8-1",
NULL
};
Cmode_t EXTCMODE_REGONLY;
#define IsRegOnly(chptr) (chptr->mode.extmode & EXTCMODE_REGONLY)
DLLFUNC int regonly_check (aClient *cptr, aChannel *chptr, char *key, char *parv[]);
DLLFUNC int MOD_TEST(regonly)(ModuleInfo *modinfo)
{
return MOD_SUCCESS;
}
DLLFUNC int MOD_INIT(regonly)(ModuleInfo *modinfo)
{
CmodeInfo req;
memset(&req, 0, sizeof(req));
req.paracount = 0;
req.flag = 'R';
req.is_ok = extcmode_default_requirechop;
CmodeAdd(modinfo->handle, req, &EXTCMODE_REGONLY);
HookAddEx(modinfo->handle, HOOKTYPE_CAN_JOIN, regonly_check);
MARK_AS_OFFICIAL_MODULE(modinfo);
return MOD_SUCCESS;
}
DLLFUNC int MOD_LOAD(regonly)(int module_load)
{
return MOD_SUCCESS;
}
DLLFUNC int MOD_UNLOAD(regonly)(int module_unload)
{
return MOD_SUCCESS;
}
DLLFUNC int regonly_check (aClient *cptr, aChannel *chptr, char *key, char *parv[])
{
if (IsRegOnly(chptr) && !IsARegNick(cptr))
return ERR_NEEDREGGEDNICK;
return 0;
}