diff options
author | Luca <deri@ntop.org> | 2019-11-05 12:15:27 +0000 |
---|---|---|
committer | Luca <deri@ntop.org> | 2019-11-05 12:15:27 +0000 |
commit | fb56b042c09f0a0bf9170b1ebe4c592cd5ba3244 (patch) | |
tree | 7aef6a5660ae460c27d4ffb61957e955b226fd1b /src/lib/ndpi_main.c | |
parent | 6298ecc2718a74a7e5c92e57af464d97c3a60bf9 (diff) | |
parent | a26fe08aa665dbc3fd1abeaeb2563839822374b5 (diff) |
Merge branch 'dev' of https://github.com/ntop/nDPI into dev
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index e71ca668e..6fe1e8065 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -5940,9 +5940,11 @@ char* ndpi_get_proto_breed_name(struct ndpi_detection_module_struct *ndpi_str, return("Unsafe"); break; case NDPI_PROTOCOL_POTENTIALLY_DANGEROUS: + return("Potentially Dangerous"); + break; + case NDPI_PROTOCOL_DANGEROUS: return("Dangerous"); break; - case NDPI_PROTOCOL_UNRATED: default: return("Unrated"); |