mirror of
https://github.com/znc/znc.git
synced 2026-08-09 18:32:55 +02:00
Add more deny options
DenySetIdent - Denies setting ident DenySetNetwork - Denies adding/removing networks/servers DenySetRealName - Denies setting realname DenySetQuitMsg - Denies setting quitmsg DenySetCTCPReplies - Denies adding/removing CTCP replies
This commit is contained in:
@@ -137,6 +137,11 @@ class CUser : private CCoreTranslationMixin {
|
||||
void SetDenyLoadMod(bool b);
|
||||
void SetAdmin(bool b);
|
||||
void SetDenySetBindHost(bool b);
|
||||
void SetDenySetIdent(bool b);
|
||||
void SetDenySetNetwork(bool b);
|
||||
void SetDenySetRealName(bool b);
|
||||
void SetDenySetQuitMsg(bool b);
|
||||
void SetDenySetCTCPReplies(bool b);
|
||||
bool SetStatusPrefix(const CString& s);
|
||||
void SetDefaultChanModes(const CString& s);
|
||||
void SetClientEncoding(const CString& s);
|
||||
@@ -192,6 +197,11 @@ class CUser : private CCoreTranslationMixin {
|
||||
bool DenyLoadMod() const;
|
||||
bool IsAdmin() const;
|
||||
bool DenySetBindHost() const;
|
||||
bool DenySetIdent() const;
|
||||
bool DenySetNetwork() const;
|
||||
bool DenySetRealName() const;
|
||||
bool DenySetQuitMsg() const;
|
||||
bool DenySetCTCPReplies() const;
|
||||
bool MultiClients() const;
|
||||
bool AuthOnlyViaModule() const;
|
||||
const CString& GetStatusPrefix() const;
|
||||
@@ -254,6 +264,11 @@ class CUser : private CCoreTranslationMixin {
|
||||
bool m_bDenyLoadMod;
|
||||
bool m_bAdmin;
|
||||
bool m_bDenySetBindHost;
|
||||
bool m_bDenySetIdent;
|
||||
bool m_bDenySetNetwork;
|
||||
bool m_bDenySetRealName;
|
||||
bool m_bDenySetQuitMsg;
|
||||
bool m_bDenySetCTCPReplies;
|
||||
bool m_bAutoClearChanBuffer;
|
||||
bool m_bAutoClearQueryBuffer;
|
||||
bool m_bBeingDeleted;
|
||||
|
||||
Reference in New Issue
Block a user