summaryrefslogtreecommitdiff
path: root/src/mode.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-08 14:03:05 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-08 14:03:05 +0000
commitabe417a8090987f61c27082899fa8771f12bd160 (patch)
tree1f8182e7873df8acbaa9da534362a259c98553db /src/mode.cpp
parentfd411d067c810b12764085081764744857a215b7 (diff)
Add chmode +k, cut down includes in use in mode.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4162 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/mode.cpp')
-rw-r--r--src/mode.cpp19
1 files changed, 5 insertions, 14 deletions
diff --git a/src/mode.cpp b/src/mode.cpp
index 74eb2790b..2a875c06d 100644
--- a/src/mode.cpp
+++ b/src/mode.cpp
@@ -20,26 +20,14 @@ using namespace std;
#include "inspircd.h"
#include "configreader.h"
#include <unistd.h>
-#include <sys/errno.h>
-#include <time.h>
-#include <string>
#include "hash_map.h"
-#include <map>
-#include <sstream>
-#include <vector>
-#include <deque>
#include "connection.h"
#include "users.h"
-#include "ctables.h"
-#include "globals.h"
#include "modules.h"
-#include "dynamic.h"
-#include "wildcard.h"
#include "message.h"
-#include "commands.h"
-#include "xline.h"
#include "inspstring.h"
#include "helperfuncs.h"
+#include "commands.h"
#include "mode.h"
/* +s (secret) */
@@ -56,6 +44,8 @@ using namespace std;
#include "modes/cmode_n.h"
/* +i (invite only) */
#include "modes/cmode_i.h"
+/* +k (keyed channel) */
+#include "modes/cmode_k.h"
extern int MODCOUNT;
extern std::vector<Module*> modules;
@@ -655,6 +645,7 @@ ModeParser::ModeParser()
this->AddMode(new ModeChannelTopicOps, 't');
this->AddMode(new ModeChannelNoExternal, 'n');
this->AddMode(new ModeChannelInviteOnly, 'i');
- /* TODO: Modes +l, +k, +o, +v, +h */
+ this->AddMode(new ModeChannelKey, 'k');
+ /* TODO: Modes +l, +o, +v, +h */
}