1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 17:17:35 +00:00

LibTLS: Add RFC explanation of AlertDescription values

This commit is contained in:
stelar7 2023-04-14 00:55:27 +02:00 committed by Sam Atkins
parent 9059694216
commit e59137d4f6
2 changed files with 179 additions and 0 deletions

View file

@ -193,6 +193,8 @@ void TLSv12::try_disambiguate_error() const
dbgln("- No one knows.");
break;
}
dbgln("- {}", enum_to_value((AlertDescription)m_context.critical_error));
}
void TLSv12::set_root_certificates(Vector<Certificate> certificates)