GH-323: change builtin plugin namespaces to Zeek

This commit is contained in:
Jon Siwek 2019-06-07 20:55:03 -07:00
parent e0f9b0829e
commit 5331bf10ec
148 changed files with 830 additions and 827 deletions

View file

@ -7,7 +7,7 @@
#include "DTLS.h"
namespace plugin {
namespace Bro_SSL {
namespace Zeek_SSL {
class Plugin : public plugin::Plugin {
public:
@ -17,7 +17,7 @@ public:
AddComponent(new ::analyzer::Component("DTLS", ::analyzer::dtls::DTLS_Analyzer::Instantiate));
plugin::Configuration config;
config.name = "Bro::SSL";
config.name = "Zeek::SSL";
config.description = "SSL/TLS and DTLS analyzers";
return config;
}