Bug fixes and test baseline updates

- ConnAckMsg return_code wasn't passed as a count on accident.
 - Some renaming items were missing due to the age of this code.
This commit is contained in:
Seth Hall 2019-07-29 15:12:11 -04:00
parent 0ed274b081
commit 7bf856768a
10 changed files with 615 additions and 526 deletions

View file

@ -5,7 +5,7 @@
#include "MQTT.h"
namespace plugin {
namespace Bro_MQTT {
namespace Zeek_MQTT {
class Plugin : public plugin::Plugin {
public:
@ -15,7 +15,7 @@ public:
::analyzer::MQTT::MQTT_Analyzer::InstantiateAnalyzer));
plugin::Configuration config;
config.name = "Bro::MQTT";
config.name = "Zeek::MQTT";
config.description = "Message Queuing Telemetry Transport v3.1.1 Protocol analyzer";
return config;
}