Add OnWebPreRequest web module hook to allow modules to do PAGE_DEFERRED style async processing.

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1841 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
cflakes
2010-03-23 17:59:42 +00:00
parent 4daa637130
commit 437eef7fdd
3 changed files with 5 additions and 1 deletions
+1
View File
@@ -388,6 +388,7 @@ void CModule::ListSockets() {
CString CModule::GetModNick() const { return ((m_pUser) ? m_pUser->GetStatusPrefix() : "*") + m_sModName; }
// Webmods
bool CModule::OnWebPreRequest(CWebSock& WebSock, const CString& sPageName) { return false; }
bool CModule::OnWebRequest(CWebSock& WebSock, const CString& sPageName, CTemplate& Tmpl) { return false; }
// !Webmods