From 98372c3cf2c1455e41c388d822876a4d146ae76d Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sun, 3 Dec 2017 17:16:28 +0000 Subject: Extract RFC modes from the core to core_channel and core_user. --- src/modes/cmode_l.cpp | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 src/modes/cmode_l.cpp (limited to 'src/modes/cmode_l.cpp') diff --git a/src/modes/cmode_l.cpp b/src/modes/cmode_l.cpp deleted file mode 100644 index d61b2597b..000000000 --- a/src/modes/cmode_l.cpp +++ /dev/null @@ -1,49 +0,0 @@ -/* - * InspIRCd -- Internet Relay Chat Daemon - * - * Copyright (C) 2009 Daniel De Graaf - * Copyright (C) 2007 Dennis Friis - * Copyright (C) 2006 Craig Edwards - * - * This file is part of InspIRCd. InspIRCd 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, version 2. - * - * 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, see . - */ - - -#include "inspircd.h" -#include "builtinmodes.h" - -ModeChannelLimit::ModeChannelLimit() - : ParamMode(NULL, "limit", 'l') -{ -} - -bool ModeChannelLimit::ResolveModeConflict(std::string &their_param, const std::string &our_param, Channel*) -{ - /* When TS is equal, the higher channel limit wins */ - return (atoi(their_param.c_str()) < atoi(our_param.c_str())); -} - -ModeAction ModeChannelLimit::OnSet(User* user, Channel* chan, std::string& parameter) -{ - int limit = ConvToInt(parameter); - if (limit < 0) - return MODEACTION_DENY; - - ext.set(chan, limit); - return MODEACTION_ALLOW; -} - -void ModeChannelLimit::SerializeParam(Channel* chan, intptr_t n, std::string& out) -{ - out += ConvToStr(n); -} -- cgit v1.3.1-10-gc9f91