summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-03 21:46:14 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-03 21:46:14 +0000
commitea4da0eb2d0eb58ba12bafab51de672d2c45c440 (patch)
treef1795e4799c1664f7df4b69c0195163f4f10cafb
parent31e2d052252c4113ae9ea63844f60df7759a03be (diff)
Attempt fix for openssl buffer issue (fix was already here but experimental and commented out)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7644 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/extra/m_ssl_openssl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/extra/m_ssl_openssl.cpp b/src/modules/extra/m_ssl_openssl.cpp
index ee273bbe3..5e5a853b4 100644
--- a/src/modules/extra/m_ssl_openssl.cpp
+++ b/src/modules/extra/m_ssl_openssl.cpp
@@ -810,10 +810,10 @@ class ModuleSSLOpenSSL : public Module
void MakePollWrite(issl_session* session)
{
- OnRawSocketWrite(session->fd, NULL, 0);
- //EventHandler* eh = ServerInstance->FindDescriptor(session->fd);
- //if (eh)
- // ServerInstance->SE->WantWrite(eh);
+ //OnRawSocketWrite(session->fd, NULL, 0);
+ EventHandler* eh = ServerInstance->FindDescriptor(session->fd);
+ if (eh)
+ ServerInstance->SE->WantWrite(eh);
}
void CloseSession(issl_session* session)