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
This commit is contained in:
brain 2007-08-03 21:46:14 +00:00
parent 31e2d05225
commit ea4da0eb2d

View File

@ -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)