diff options
-rw-r--r-- | include/users.h | 2 | ||||
-rw-r--r-- | src/users.cpp | 27 |
2 files changed, 29 insertions, 0 deletions
diff --git a/include/users.h b/include/users.h index 6f9c6d296..64ebd5fb7 100644 --- a/include/users.h +++ b/include/users.h @@ -274,6 +274,8 @@ class userrec : public connection */ const char* FormatNoticeMasks(); + bool userrec::ProcessNoticeMasks(const char *sm); + bool IsNoticeMaskSet(unsigned char sm); void SetNoticeMask(unsigned char sm, bool value); diff --git a/src/users.cpp b/src/users.cpp index b18806016..f455bb825 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -110,6 +110,33 @@ bool DoneClassesAndTypes(const char* tag) return true; } +bool userrec::ProcessNoticeMasks(const char *sm) +{ + bool adding = true; + const char *c = sm; + + while (c && *c) + { + switch (*c) + { + case '+': + adding = true; + break; + case '-': + adding = false; + break; + default: + if ((*c >= 'A') && (*c <= 'z')) + this->SetNoticeMask(*c, adding); + break; + } + + *c++; + } + + return true; +} + bool userrec::IsNoticeMaskSet(unsigned char sm) { return (snomasks[sm-65]); |