mirror of
https://github.com/znc/znc.git
synced 2026-05-08 22:34:45 +02:00
Added VersionReply config option
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@167 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -378,6 +378,7 @@ void CUser::SetDefaultChanModes(const string& s) { m_sDefaultChanModes = s; }
|
||||
void CUser::SetIRCNick(const CNick& n) { m_IRCNick = n; }
|
||||
void CUser::SetIRCServer(const string& s) { m_sIRCServer = s; }
|
||||
void CUser::SetQuitMsg(const string& s) { m_sQuitMsg = s; }
|
||||
void CUser::SetVersionReply(const string& s) { m_sVersionReply = s; }
|
||||
|
||||
bool CUser::SetStatusPrefix(const string& s) {
|
||||
if ((!s.empty()) && (s.length() < 6) && (s.find(' ') == string::npos)) {
|
||||
@@ -414,4 +415,5 @@ const vector<CChan*>& CUser::GetChans() const { return m_vChans; }
|
||||
const CNick& CUser::GetIRCNick() const { return m_IRCNick; }
|
||||
const string& CUser::GetIRCServer() const { return m_sIRCServer; }
|
||||
const string& CUser::GetQuitMsg() const { return m_sQuitMsg; }
|
||||
const string& CUser::GetVersionReply() const { return m_sVersionReply; }
|
||||
// !Getters
|
||||
|
||||
Reference in New Issue
Block a user