diff options
| author | 2006-09-15 09:47:43 +0000 | |
|---|---|---|
| committer | 2006-09-15 09:47:43 +0000 | |
| commit | 3944d6cf0dbdb5afb714d3b027db0314ff830636 (patch) | |
| tree | 18f0562a70f7a7a70caec76d624cb59ee6e2927f /src/modules/m_services_account.cpp | |
| parent | Fix some stuff, avoid use of global ServerInstance var (diff) | |
| download | inspircd++-3944d6cf0dbdb5afb714d3b027db0314ff830636.tar.gz inspircd++-3944d6cf0dbdb5afb714d3b027db0314ff830636.tar.bz2 inspircd++-3944d6cf0dbdb5afb714d3b027db0314ff830636.zip | |
Comments describing classes, for the url http://svn.inspircd.org/docs/annotated.html
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5251 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_services_account.cpp')
| -rw-r--r-- | src/modules/m_services_account.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/m_services_account.cpp b/src/modules/m_services_account.cpp index 4b5ec5c86..739ad6119 100644 --- a/src/modules/m_services_account.cpp +++ b/src/modules/m_services_account.cpp @@ -24,6 +24,8 @@ using namespace std; /* $ModDesc: Povides support for ircu-style services accounts, including chmode +R, etc. */ +/** Channel mode +R - unidentified users cannot join + */ class AChannel_R : public ModeHandler { public: @@ -52,6 +54,8 @@ class AChannel_R : public ModeHandler } }; +/** User mode +R - unidentified users cannot message + */ class AUser_R : public ModeHandler { public: @@ -80,6 +84,8 @@ class AUser_R : public ModeHandler } }; +/** Channel mode +M - unidentified users cannot message channel + */ class AChannel_M : public ModeHandler { public: |
