mirror of
https://github.com/znc/znc.git
synced 2026-08-10 10:52:59 +02:00
Merge pull request #1814 from blendbyte/new-deny-options
New User Options: DenySetIdent, DenySetNetwork, DenySetRealName, DenySetQuitMsg, DenySetCTCPReplies Close #1796
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