mirror of
https://github.com/znc/znc.git
synced 2026-07-13 13:21:33 +02:00
Add the OnIRCConnectionError(CIRCSock *pIRCSock) module hook
This commit is contained in:
@@ -10,6 +10,7 @@ void OnPostRehash()
|
||||
void OnIRCDisconnected()
|
||||
void OnIRCConnected()
|
||||
EModRet OnIRCConnecting(CIRCSock *pIRCSock)
|
||||
void OnIRCConnectionError(CIRCSock *pIRCSock)
|
||||
EModRet OnIRCRegistration(CString& sPass, CString& sNick, CString& sIdent, CString& sRealName)
|
||||
EModRet OnBroadcast(CString& sMessage)
|
||||
EModRet OnConfigLine(const CString& sName, const CString& sValue, CUser* pUser, CChan* pChan)
|
||||
|
||||
@@ -33,6 +33,7 @@ public:
|
||||
virtual void OnIRCDisconnected();
|
||||
virtual void OnIRCConnected();
|
||||
virtual EModRet OnIRCConnecting(CIRCSock *pIRCSock);
|
||||
virtual void OnIRCConnectionError(CIRCSock *pIRCSock);
|
||||
virtual EModRet OnIRCRegistration(CString& sPass, CString& sNick, CString& sIdent, CString& sRealName);
|
||||
virtual EModRet OnBroadcast(CString& sMessage);
|
||||
virtual EModRet OnConfigLine(const CString& sName, const CString& sValue, CUser* pUser, CChan* pChan);
|
||||
|
||||
@@ -295,6 +295,7 @@ sub OnPostRehash {}
|
||||
sub OnIRCDisconnected {}
|
||||
sub OnIRCConnected {}
|
||||
sub OnIRCConnecting {}
|
||||
sub OnIRCConnectionError {}
|
||||
sub OnIRCRegistration {}
|
||||
sub OnBroadcast {}
|
||||
sub OnConfigLine {}
|
||||
|
||||
Reference in New Issue
Block a user