Skip the close notify if application layer completes successfully

This commit is contained in:
Martin Willi
2010-08-24 10:30:24 +02:00
parent 421a529f88
commit a2c1235969
2 changed files with 11 additions and 4 deletions
+9 -2
View File
@@ -138,8 +138,15 @@ METHOD(tls_alert_t, get, bool,
this->consumed = TRUE;
*level = TLS_FATAL;
*desc = this->desc;
DBG1(DBG_TLS, "sending fatal TLS alert '%N'",
tls_alert_desc_names, this->desc);
if (this->desc == TLS_CLOSE_NOTIFY)
{
DBG1(DBG_TLS, "sending TLS close notify");
}
else
{
DBG1(DBG_TLS, "sending fatal TLS alert '%N'",
tls_alert_desc_names, this->desc);
}
return TRUE;
}
else