Skip ciphersuites that don't have any users.

This commit is contained in:
Sadie Powell 2024-10-25 18:11:15 +01:00
parent f4a9f3ce22
commit 434c4e7918

View File

@ -517,6 +517,9 @@ public:
for (const auto& [ciphersuite, count] : counts)
{
if (!count)
continue;
stats.AddGenericRow(INSP_FORMAT("{}: {}", ciphersuite, count))
.AddTags(stats, {
{ "ciphersuite", ciphersuite },