diff options
| author | 2020-02-18 18:03:46 +0000 | |
|---|---|---|
| committer | 2020-02-18 18:56:14 +0000 | |
| commit | 042617e97f00c840bb740b0279bf921f4a6cbd01 (patch) | |
| tree | 660a8cea1c5c87f4720f114052624440c7857746 /src/modules/m_inviteexception.cpp | |
| parent | Use ircd-hybrid's numerics for the "pending invites" list. (diff) | |
Add enum constants for list mode numerics.
Diffstat (limited to 'src/modules/m_inviteexception.cpp')
| -rw-r--r-- | src/modules/m_inviteexception.cpp | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/modules/m_inviteexception.cpp b/src/modules/m_inviteexception.cpp index a6819cc98..1690ed6c7 100644 --- a/src/modules/m_inviteexception.cpp +++ b/src/modules/m_inviteexception.cpp @@ -26,23 +26,18 @@ #include "inspircd.h" #include "listmode.h" -/* - * Written by Om <om@inspircd.org>, April 2005. - * Based on m_exception, which was originally based on m_chanprotect and m_silence - * - * The +I channel mode takes a nick!ident@host, glob patterns allowed, - * and if a user matches an entry on the +I list then they can join the channel, - * ignoring if +i is set on the channel - * Now supports CIDR and IP addresses -- Brain - */ +enum +{ + // From RFC 2812. + RPL_INVEXLIST = 346, + RPL_ENDOFINVEXLIST = 347 +}; -/** Handles channel mode +I - */ class InviteException : public ListModeBase { public: InviteException(Module* Creator) - : ListModeBase(Creator, "invex", 'I', "End of Channel Invite Exception List", 346, 347, true) + : ListModeBase(Creator, "invex", 'I', "End of Channel Invite Exception List", RPL_INVEXLIST, RPL_ENDOFINVEXLIST, true) { syntax = "<mask>"; } |
