diff options
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/users.h b/include/users.h index a7d1c9250..6f9c6d296 100644 --- a/include/users.h +++ b/include/users.h @@ -170,6 +170,11 @@ class userrec : public connection */ char modes[64]; + /** What snomasks are set on this user. + * This functions the same as the above modes. + */ + char snomasks[64]; + UserChanList chans; /** The server the user is connected to. @@ -267,6 +272,15 @@ class userrec : public connection /* * Create a displayable mode string for this users umodes */ + const char* FormatNoticeMasks(); + + bool IsNoticeMaskSet(unsigned char sm); + + void SetNoticeMask(unsigned char sm, bool value); + + /* + * Create a displayable mode string for this users umodes + */ const char* FormatModes(); bool IsModeSet(unsigned char m); |