mirror of https://github.com/Icinga/icinga2.git
Fix another problem where Icinga doesn't detect that a cluster connection is dead
refs #8485
This commit is contained in:
parent
559350d557
commit
4972364f42
|
@ -167,14 +167,6 @@ void TlsStream::OnEvent(int revents)
|
|||
m_CV.notify_all();
|
||||
}
|
||||
|
||||
break;
|
||||
case TlsActionClose:
|
||||
(void) SSL_shutdown(m_SSL.get());
|
||||
rc = 1;
|
||||
|
||||
m_CloseOK = true;
|
||||
m_CV.notify_all();
|
||||
|
||||
break;
|
||||
default:
|
||||
VERIFY(!"Invalid TlsAction");
|
||||
|
@ -290,13 +282,11 @@ void TlsStream::Write(const void *buffer, size_t count)
|
|||
void TlsStream::Close(void)
|
||||
{
|
||||
boost::mutex::scoped_lock lock(m_Mutex);
|
||||
m_CurrentAction = TlsActionClose;
|
||||
ChangeEvents(POLLOUT);
|
||||
(void) SSL_shutdown(m_SSL.get());
|
||||
m_Socket->Close();
|
||||
|
||||
while (!m_CloseOK && !m_ErrorOccurred)
|
||||
m_CV.wait(lock);
|
||||
|
||||
HandleError();
|
||||
m_CloseOK = true;
|
||||
m_CV.notify_all();
|
||||
}
|
||||
|
||||
bool TlsStream::IsEof(void) const
|
||||
|
|
|
@ -35,8 +35,7 @@ enum TlsAction
|
|||
TlsActionNone,
|
||||
TlsActionRead,
|
||||
TlsActionWrite,
|
||||
TlsActionHandshake,
|
||||
TlsActionClose
|
||||
TlsActionHandshake
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue