aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/mqtt.c
Commit message (Collapse)AuthorAge
* Remove `detected_protocol_stack` field from `ndpi_packet_struct` (#1317)Ivan Nardi2021-09-29
| | | | | | | | | | | | | This field is an exact copy of `ndpi_flow_struct->detected_protocol_stack[2]`: * at the very beginning of packet dissection, the value saved in `flow->detected_protocol_stack` is copied in `packet->detected_protocol_stack` (via `ndpi_detection_process_packet()` -> `ndpi_init_packet_header()`) * every time we update `flow->detected_protocol_stack` we update `packet->detected_protocol_stack` too (via `ndpi_int_change_protocol()` -> `ndpi_int_change_packet_protocol()`) These two fields are always in sync: keeping the same value in two different places is useless.
* mqtt: add boundary check in log messageNardi Ivan2020-06-26
|
* Added checks for missing protocol initializationLuca Deri2018-07-23
| | | | | Fixed missing LOG_ERR initialization Fixed logging warnings
* Major code cleanupLuca2018-07-21
| | | | Converted some not popular protocols to NDPI_PROTOCOL_GENERIC with category detection
* Refactoring the debugging output.Vitaly Lavrov2017-10-26
| | | | | | | | | | | | | | levels of debug output: 0 - ERROR: Only for errors. 1 - TRACE: Start of each packets and if found protocol. 2 - DEBUG: Start of searching each protocol and excluding protocols. 3 - DEBUG_EXTRA: For all other messages. Added field ndpi_struct->debug_logging for enable debug output of each protocols. Simple macros for debugging output are added: NDPI_LOG_ERR(), NDPI_LOG_INFO(), NDPI_LOG_DBG(), NDPI_LOG_DBG2(), NDPI_EXCLUDE_PROTO()
* Fixed payload overflow in MQTT, DNStheirix2016-07-25
|
* Fixed false positives on skype and KakaoTalk. Tests run smooth now.Sorin Zamfir2016-04-03
|
* Solved invalid detection on tests. Needs further work to detect one of the ↵Sorin Zamfir2016-04-03
| | | | | | flows. Please enter the commit message for your changes. Lines starting
* Fixed the bug. Damn comparison.Sorin Zamfir2016-02-20
|
* We have a bug :(. Sorin Zamfir2016-02-19
|
* Functional mqttSorin Zamfir2016-02-19
|
* Improved Mqtt detection. 3 messages remain for identificationSorin Zamfir2016-02-19
|
* Some filtering applied. Not yet functional.Sorin Zamfir2016-02-18
|
* First draft of the Mqtt dissector.Sorin Zamfir2016-02-18