mirror of
https://github.com/znc/znc.git
synced 2026-08-08 01:43:03 +02:00
sync from my branch rev 983 and 993:
- module api change, if module fails to load it can give back an useful error message - give a message when client doesnt supply a password when connecting - some minor cleanup git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@803 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -18,7 +18,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
virtual bool OnLoad( const CString& sArgs );
|
||||
virtual bool OnLoad( const CString& sArgs, CString& sErrorMsg );
|
||||
|
||||
virtual EModRet OnUserPart( CString& sChannel, CString& sMessage )
|
||||
{
|
||||
@@ -88,7 +88,7 @@ static void RunTimer( CModule * pModule, CFPTimer *pTimer )
|
||||
((CStickyChan *)pModule)->RunJob();
|
||||
}
|
||||
|
||||
bool CStickyChan::OnLoad(const CString& sArgs)
|
||||
bool CStickyChan::OnLoad(const CString& sArgs, CString& sErrorMsg)
|
||||
{
|
||||
AddTimer( RunTimer, "StickyChanTimer", 15 );
|
||||
return( true );
|
||||
|
||||
Reference in New Issue
Block a user