diff options
author | Luca Deri <deri@ntop.org> | 2022-01-23 20:59:36 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2022-01-23 20:59:36 +0100 |
commit | b6b4967aa603035af066a4a7a3b5155573a5112f (patch) | |
tree | 747127ae97022fd6f42b6e758bec131341e27dba /src/include | |
parent | a8fe74e502461cf6d6d1dee3567a3c39445d301e (diff) |
Improved Zoom protocol detection
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_protocols.h | 4 | ||||
-rw-r--r-- | src/include/ndpi_typedefs.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/ndpi_protocols.h b/src/include/ndpi_protocols.h index 69f7e3b4b..5e27076e3 100644 --- a/src/include/ndpi_protocols.h +++ b/src/include/ndpi_protocols.h @@ -62,7 +62,6 @@ void init_bgp_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int3 void init_bittorrent_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); int ndpi_search_into_bittorrent_cache(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow, u_int32_t saddr, u_int16_t sport, u_int32_t daddr, u_int16_t dport); -u_int32_t ndpi_bittorrent_hash_funct(u_int32_t ip, u_int16_t port); void init_lisp_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); void init_teredo_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); void init_ciscovpn_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); @@ -220,4 +219,7 @@ void init_z3950_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_in void init_avast_securedns_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); void init_cassandra_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); +/* ndpi_main.c */ +extern u_int32_t ndpi_ip_port_hash_funct(u_int32_t ip, u_int16_t port); + #endif /* __NDPI_PROTOCOLS_H__ */ diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 13e6874e7..17924b241 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1113,6 +1113,9 @@ struct ndpi_detection_module_struct { /* NDPI_PROTOCOL_BITTORRENT */ struct ndpi_lru_cache *bittorrent_cache; + /* NDPI_PROTOCOL_ZOOM */ + struct ndpi_lru_cache *zoom_cache; + /* NDPI_PROTOCOL_STUN and subprotocols */ struct ndpi_lru_cache *stun_cache; |