aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_cloaking.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-09-15 10:59:36 +0000
committerGravatar brain2006-09-15 10:59:36 +0000
commitb45e7cfebbeaad4ecc3c55bc3060140f50f710d3 (patch)
treef5d168a3abe2b52b3e32f344c07ddeedaed3c698 /src/modules/m_cloaking.cpp
parentRemove ExemptItem and InviteItem, these were never used (diff)
Annotations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5254 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_cloaking.cpp')
-rw-r--r--src/modules/m_cloaking.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp
index 60f62b099..29d26a9ec 100644
--- a/src/modules/m_cloaking.cpp
+++ b/src/modules/m_cloaking.cpp
@@ -60,6 +60,8 @@ typedef unsigned int uint32_t;
typedef uint32_t word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */
typedef unsigned char byte;
+/** An MD5 context, used by m_cloaking
+ */
class xMD5Context : public classbase
{
public:
@@ -68,6 +70,8 @@ class xMD5Context : public classbase
word32 in[16];
};
+/** Handles user mode +x
+ */
class CloakUser : public ModeHandler
{