mirror of
https://github.com/nmap/nmap.git
synced 2025-12-25 17:09:02 +00:00
Nmap now does better OS detection guesses when there isn't an exact match because it uses the point system (MatchPoints) now given in nmap-os-db
This commit is contained in:
@@ -197,6 +197,13 @@ typedef struct FingerTest {
|
||||
struct FingerTest *next;
|
||||
} FingerPrint;
|
||||
|
||||
/* This structure contains the important data from the fingerprint
|
||||
database (nmap-os-db or nmap-os-fingerprints) */
|
||||
typedef struct FingerPrintDB {
|
||||
FingerPrint **prints;
|
||||
FingerPrint *MatchPoints;
|
||||
} FingerPrintDB;
|
||||
|
||||
struct timeout_info {
|
||||
int srtt; /* Smoothed rtt estimate (microseconds) */
|
||||
int rttvar; /* Rout trip time variance */
|
||||
|
||||
Reference in New Issue
Block a user