From 2b3d9fd5501fda3bca7ce687984fb5c291ff09c3 Mon Sep 17 00:00:00 2001 From: dmiller Date: Fri, 30 Sep 2016 04:15:44 +0000 Subject: [PATCH] Add a data member for number of prints in a group --- osscan.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/osscan.h b/osscan.h index 9b6174d95..3c84c39a2 100644 --- a/osscan.h +++ b/osscan.h @@ -172,6 +172,9 @@ struct OS_Classification { classifications. */ struct FingerMatch { int line; /* For reference prints, the line # in nmap-os-db */ + /* For IPv6 matches, the number of fingerprints that contributed to this + * classification group */ + unsigned short numprints; char *OS_name; std::vector OS_class;