diff options
author | Sorin Zamfir <sorin.zamfir@yahoo.com> | 2016-03-20 11:22:04 +0200 |
---|---|---|
committer | Sorin Zamfir <sorin.zamfir@yahoo.com> | 2016-03-20 11:22:04 +0200 |
commit | 2d5d39db7bdaefc424caab7ec334371dd1f181bf (patch) | |
tree | 741e3082bf08d0aac65168fa35de3be1a95a3734 | |
parent | 28806f3187d8a0eb5c9f42b2c57157e1c9fcc84a (diff) |
Updated with mqtt callbacks.
-rw-r--r-- | src/include/ndpi_protocols.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/ndpi_protocols.h b/src/include/ndpi_protocols.h index 56028c995..b4ca6dba2 100644 --- a/src/include/ndpi_protocols.h +++ b/src/include/ndpi_protocols.h @@ -198,7 +198,7 @@ void ndpi_search_mpegts(struct ndpi_detection_module_struct *ndpi_struct, struct void ndpi_search_starcraft(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow); void ndpi_search_ubntac2(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow); void ndpi_search_coap(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow); - +void ndpi_search_mqtt (struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow); /* --- INIT FUNCTIONS --- */ void init_afp_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); @@ -338,4 +338,5 @@ void init_zmq_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int3 void init_stracraft_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); void init_ubntac2_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); void init_coap_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); +void init_mqtt_dissector (struct ndpi_detection_module_struct *ndpi_struct,u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask); #endif /* __NDPI_PROTOCOLS_H__ */ |