diff options
author | Luca <deri@ntop.org> | 2024-05-22 18:04:33 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2024-05-22 18:04:33 +0200 |
commit | 44a290286b298a461b3a88a0bfdc4e0361a247f3 (patch) | |
tree | 8fb52896c1c62153b5953f20e86cde65ae6b0187 /src/lib/ndpi_utils.c | |
parent | 74d3843ebe0d181072acc6700e6c41595ce75f0d (diff) |
More NDPI_PROBING_ATTEMPT changes
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index dc732e522..9c0819747 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -2094,6 +2094,9 @@ const char* ndpi_risk2str(ndpi_risk_enum risk) { case NDPI_BINARY_DATA_TRANSFER: return("Binary file/data transfer (attempt)"); + case NDPI_PROBING_ATTEMPT: + return("Probing attempt"); + default: ndpi_snprintf(buf, sizeof(buf), "%d", (int)risk); return(buf); |