diff options
author | Luca Deri <deri@ntop.org> | 2022-05-30 18:29:08 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2022-05-30 18:29:08 +0200 |
commit | 912b69af60ce2408341fa440374195330fe46439 (patch) | |
tree | 2d9f87e6a4d2db217cb8bb45e6fb322259ab13dc | |
parent | 34ede63c1590684919ec101efd4116b46edefac3 (diff) |
Redefined type name to avoid conflicts
-rw-r--r-- | src/include/ndpi_typedefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 3004ef523..b0143d404 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1136,7 +1136,7 @@ struct tls_heuristics { u_int8_t is_safari_tls:1, is_firefox_tls:1, is_chrome_tls:1, notused:5; }; -struct ndpi_risk_info { +struct ndpi_risk_information { ndpi_risk_enum id; char *info; }; @@ -1202,7 +1202,7 @@ struct ndpi_flow_struct { u_int8_t risk_checked:1, ip_risk_mask_evaluated:1, host_risk_mask_evaluated:1, tree_risk_checked:1, _notused:4; ndpi_risk risk_mask; /* Stores the flow risk mask for flow peers */ ndpi_risk risk; /* Issues found with this flow [bitmask of ndpi_risk] */ - struct ndpi_risk_info risk_infos[MAX_NUM_RISK_INFOS]; /* String that contains information about the risks found */ + struct ndpi_risk_information risk_infos[MAX_NUM_RISK_INFOS]; /* String that contains information about the risks found */ u_int8_t num_risk_infos; /* |